import { FunctionComponent } from 'preact'; export declare enum IconSize { small = "small", medium = "medium", large = "large" } export interface IconProps { name: string; size?: IconSize; } export declare const Icon: FunctionComponent;