import type { ReactElement } from 'react'; import type { SvgProps } from 'react-native-svg'; export interface LogoProps extends Omit { /** Catalog slug, e.g. "bca". Bundles all icons if used; prefer `svg` for tree-shaking. */ slug?: string; /** Pre-imported SVG string (tree-shake friendly). Takes precedence over `slug`. */ svg?: string; /** Shorthand: sets both width and height when neither is provided. */ size?: number | string; } export declare function Logo(props: LogoProps): ReactElement | null; export default Logo;