/// import { FlagIcon, Props } from './FlagIcon'; declare const meta: { component: typeof FlagIcon; title: string; decorators: ((story: () => JSX.Element) => JSX.Element)[]; argTypes: { size: { control: { type: string; options: string[]; }; }; countryCode: { control: { type: string; options: string[]; }; }; }; }; export default meta; export declare const basicFlagIcon: { (args: Props): JSX.Element; args: { accessibilityLabel: string; countryCode: string; size: string; }; story: { name: string; }; };