export namespace defaultIcon { export { Icon as component }; export { iconStyles as styles }; export { iconAttributes as attributes }; } export namespace blenderIcon { export { BlenderIcon as component }; export { blenderStyles as styles }; export { blenderAttributes as attributes }; } declare function Icon({ state: _, ...rest }: { [x: string]: any; state: any; }): JSX.Element; declare function iconStyles(_: any, { color, size }: { color: any; size: any; }): import("facepaint").DynamicStyle; declare function iconAttributes(): null; declare function BlenderIcon({ className, ...rest }: { [x: string]: any; className: any; }): JSX.Element; declare function blenderStyles(_: any, { color, size }: { color: any; size: any; }): any; declare function blenderAttributes(_: any, { color, size }: { color: any; size: any; }): { className: string; }; export {};