import { IconType, EventHandlerProps } from '../../../types'; export interface IconProps extends EventHandlerProps { className?: string; fill?: string; type: IconType; } declare const Icon: (props: IconProps) => JSX.Element | null; export default Icon; //# sourceMappingURL=Icon.d.ts.map