import React, { Ref, SVGProps } from "react"; import { Icon } from "./types"; import type { Icon as FlagIcon } from "../ebay-flag"; export type A11yVariant = "label"; export type EbayIconProps = SVGProps & { className?: string; name: Icon | FlagIcon; noSkinClasses?: boolean; a11yText?: string; a11yVariant?: A11yVariant; forwardedRef?: Ref; /** * These properties are used by EbayImagePlaceholder and for flags. * NOTE: The flag "@deprecated" is only to not show this property in the autocomplete list on the top * @deprecated */ __type?: "icon" | "flag" | "none"; }; export declare function kebabCased(str: string): string; declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>>; export default _default; //# sourceMappingURL=icon.d.ts.map