import { SxProps, Theme } from '@mui/material'; import { FC } from 'react'; export interface FlagProps { language: string; sx?: SxProps; } /** * A simple component to display a flag icon for a given language. * * Props: * language: The language to display a flag for, as a StringLanguages enum value. * sx: Optional styles to apply to the component. * * Returns a Box component with an SVG flag icon from flagcdn.com as a ::before pseudo-element. * The flag is sized to 1.5rem by default, but can be overridden by passing a custom sx prop. * The component also includes an aria-label for accessibility, set to `Flag for `. */ export declare const Flag: FC; export default Flag; //# sourceMappingURL=Flag.d.ts.map