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