import React, { ElementType } from 'react'; import { BoxProps } from '@mui/material'; export interface FlowFlagProps extends Omit { /** * SVG of Flag, e.g. import CZFLag from 'country-flag-icons/react/3x2/CZ'; */ source?: ElementType; /** * The size of the flag * @default small */ size?: 'small' | 'medium' | 'large'; /** * The width of the flag */ width?: number; /** * Variants * @default circle */ variant?: '3x2' | 'circle' | 'square'; /** * Disabled state * @default false */ disabled?: boolean; } /** * Renders country flag icon */ export declare const FlowFlag: React.FC;