import React from 'react'; export declare type IconNames = 'arrow-down' | 'arrow-bottom' | 'arrow-left' | 'arrow-right' | 'email' | 'comment' | 'home' | 'home-fill' | 'globe' | 'bell' | 'flag' | 'building' | 'arrow-next' | 'arrow-prev' | 'notification' | 'bulb' | 'coin' | 'star' | 'play' | 'modem' | 'burger' | 'check' | 'share' | 'more' | 'heart' | 'heart-fill' | 'close' | 'location' | 'image' | 'toilet-paper' | 'credit-card' | 'medical-case' | 'monitor' | 'calendar' | 'user' | 'plus' | 'minus' | 'bag' | 'star-outline' | 'instagram' | 'facebook' | 'twitter' | 'pinterest' | 'smile' | 'edit' | 'hand-cart' | 'wallet' | 'receipt' | 'close-circle' | 'close-circle-fill' | 'search' | 'plus-circle' | 'minus-circle' | 'upload-file' | 'pencil' | 'route' | 'tick' | 'lock' | 'marker' | 'car' | 'circle-and-square' | 'pen' | 'lightning' | 'stopwatch' | 'clock' | 'candlesticks' | 'glass' | 'at' | 'pizza-slice' | 'google' | 'apple' | 'map-menu' | 'webcam' | 'eye'; export declare type IconsHash = { [K in IconNames]: string; }; export declare const icons: IconsHash; export declare type IconProps = { name: IconNames; size?: string | number; } & React.HTMLAttributes; declare const Icon: (props: IconProps) => JSX.Element; export { Icon }; //# sourceMappingURL=Icon.d.ts.map