import React from "react"; import { acceptedColors } from "../theme/colors"; export declare const sizes: readonly ["xs", "sm", "md", "lg", "xl"]; export declare function getIconFullPath(name: string): string; export interface IconProps { name: string; size?: (typeof sizes)[number]; color?: (typeof acceptedColors)[number]; } interface InternalIconProps extends Omit { color?: string; } export declare const InternalIcon: ({ name, size, color, }: InternalIconProps) => React.JSX.Element; export declare const Icon: ({ color, ...rest }: IconProps) => React.JSX.Element; export {}; //# sourceMappingURL=Icon.d.ts.map