/**
 * Icon to be used with flag.
 * @displayName FlagIcon
 * @docs {@link https://design.visa.com/react/components/flag | See Docs}
 */
declare const FlagIcon: <HTMLElementType = SVGSVGElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: import("react").ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & import("../message-icon").MessageIconProperties) => import("react").ReactElement;
export default FlagIcon;
