import type { SvgProps } from 'react-native-svg'; export declare const FLAGS: { br: (props: SvgProps) => JSX.Element; co: (props: SvgProps) => JSX.Element; mx: (props: SvgProps) => JSX.Element; }; export declare type FlagsName = keyof typeof FLAGS; export interface FlagProps extends Omit { name: FlagsName | undefined; width?: number; height?: number; } /** * @name Name of flag to render * @width Icon width * @height Icon height * @see https://zeroheight.com/502cb86ad/p/930bf3-icons/b/843925 */ export declare const Flag: ({ name, width, height, ...props }: FlagProps) => JSX.Element | null;