// SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11 declare module '@env'; declare module '*.png' { const value: string; export = value; } declare module '*.jpeg' { const value: string; export = value; } declare module '*.svg' { import React from 'react'; import { SvgProps } from 'react-native-svg'; const content: React.FC; export default content; }