import { ComponentProps, FC } from "react";
import { EbayIcon } from "../ebay-icon";
import { Icon } from "./types";
export type EbayFlagIconProps = Omit<ComponentProps<typeof EbayIcon>, "name"> & {
    name: Icon;
};
declare const EbayFlagIcon: FC<EbayFlagIconProps>;
export default EbayFlagIcon;
//# sourceMappingURL=flag-icon.d.ts.map