import type { SvgProps } from 'react-native-svg'; export declare const ICONS: { cameraFocused: (props: SvgProps) => JSX.Element; cameraInactive: (props: SvgProps) => JSX.Element; chatFocused: (props: SvgProps) => JSX.Element; chatInactive: (props: SvgProps) => JSX.Element; chiperFocused: (props: SvgProps) => JSX.Element; chiperInactive: (props: SvgProps) => JSX.Element; headSetFocused: (props: SvgProps) => JSX.Element; headSetInactive: (props: SvgProps) => JSX.Element; homeFocused: (props: SvgProps) => JSX.Element; homeInactive: (props: SvgProps) => JSX.Element; medalFocused: (props: SvgProps) => JSX.Element; medalInactive: (props: SvgProps) => JSX.Element; moneyFocused: (props: SvgProps) => JSX.Element; moneyInactive: (props: SvgProps) => JSX.Element; promosFocused: (props: SvgProps) => JSX.Element; promoInactive: (props: SvgProps) => JSX.Element; starFocused: (props: SvgProps) => JSX.Element; starInactive: (props: SvgProps) => JSX.Element; ticketFocused: (props: SvgProps) => JSX.Element; ticketInactive: (props: SvgProps) => JSX.Element; trophyFocused: (props: SvgProps) => JSX.Element; trophyInactive: (props: SvgProps) => JSX.Element; userFocused: (props: SvgProps) => JSX.Element; userInactive: (props: SvgProps) => JSX.Element; }; export declare type IconName = keyof typeof ICONS; export interface IconProps extends Omit { name: IconName | undefined; size?: number; } /** * @name Name of icon to render * @width Icon width and height * @see https://zeroheight.com/502cb86ad/p/930bf3-icons/b/44ff47/t/45936e */ export declare const Icon: ({ name, size, ...props }: IconProps) => JSX.Element | null;