import { IViewProps } from '../View'; export declare const Icons: readonly ["alarm", "alarm-filled", "armchair", "armchair-filled", "arrow-down", "arrow-down-filled", "arrow-left", "arrow-left-filled", "arrow-right", "arrow-right-filled", "arrow-up", "arrow-up-filled", "baby-stroller", "baby-stroller-filled", "badge", "badge-filled", "ball-soccer", "ball-soccer-filled", "bank-notes", "bank-notes-filled", "bike-filled", "bike-line", "book", "book-filled", "book-open", "book-open-filled", "box-filled", "box-line", "bus-filled", "bus-line", "calendar-check", "calendar-check-filled", "camera", "camera-filled", "car", "car-filled", "chat", "chat-filled", "chat-question-filled", "chat-question-outline", "check", "check-circle", "check-circle-filled", "check-filled", "check-light", "check-light-filled", "cloud", "cloud-filled", "cloud-star", "cloud-star-filled", "cog", "cog-filled", "comment", "comment-filled", "computer", "computer-filled", "download", "download-filled", "dress", "dress-filled", "double-bed-filled", "double-bed-line", "earth-filled", "earth-line", "edit", "edit-filled", "electric-car-filled", "electric-car-line", "email", "email-filled", "file", "file-document", "file-document-filled", "file-filled", "folder", "folder-filled", "graduate", "graduate-filled", "hand-bag", "hand-bag-filled", "heart", "heart-beat", "heart-beat-filled", "heart-crap", "heart-crap-filled", "heart-filled", "house", "house-add-filled", "house-chart-filled", "house-filled", "laundry-filled", "laundry-line", "leaf-filled", "leaf-line", "lightbulb", "lightbulb-filled", "list-bullets", "list-bullets-filled", "location-pin", "location-pin-filled", "location-pin-food", "location-ping-food-filled", "login-key", "login-key-filled", "logout", "logout-filled", "man-megaphone", "man-megaphone-filled", "newspaper", "newspaper-filled", "panel-filled", "panel-line", "paperclip", "paperclip-filled", "pet-paw", "pet-paw-filled", "phone", "phone-filled", "picture-add-filled", "picture-filled", "plug-filled", "plug-line", "plus", "plus-filled", "plus-light", "plus-light-filled", "power", "power-filled", "present-box", "present-box-filled", "print", "print-filled", "recycle-filled", "recycle-line", "remove", "remove-filled", "remove-light", "remove-light-filled", "road-filled", "road-line", "sand-glass", "sand-glass-filled", "search", "search-filled", "send", "send-filled", "serving", "serving-filled", "settings", "settings-filled", "sharetime", "sharetime-filled", "shopping-cart", "shopping-cart-filled", "smartphone", "smartphone-filled", "sort", "sort-asc", "sort-desc", "scoop-filled", "scoop-line", "sync", "sync-filled", "temperature-filled", "ticket", "ticket-filled", "tile-filled", "toolbox-filled", "toolbox-line", "trash", "trash-filled", "trending-down", "trending-down-filled", "trending-up", "trending-up-filled", "truck-filled", "truck-line", "upload", "upload-filled", "user", "user-chat", "user-chat-filled", "user-filled", "user-group", "user-group-chat", "user-group-chat-filled", "user-group-filled", "view", "view-filled", "wrench-screwdriver", "wrench-screwdriver-filled"]; export declare type IconType = typeof Icons[number]; export declare type IconSizeType = 'xs' | 's' | 'm' | 'l' | number; interface IIconProps extends IViewProps { name: IconType; color?: string; size?: IconSizeType; } declare const Icon: ({ color, name, size, ...props }: IIconProps) => JSX.Element; export default Icon;