import * as React from 'react'; export declare type FlagProps = { /** ISO-3166-2 code for requested Flag */ code?: string; /** Name of region for requested Flag */ name?: string; /** Width of Flag. Height set automatically. */ size?: string; theme?: string; }; export default function FlagFactory(Flags: any, flagList: any): React.FunctionComponent;