import { BoxProps, ThemeUIStyleObject } from 'theme-ui'; import React from 'react'; import * as _icons from './icons'; export declare type IconName = keyof typeof _icons; export interface IconProps extends React.SVGProps { icon: IconName; circular?: boolean; circleProps?: BoxProps; preserveColors?: boolean; sx?: ThemeUIStyleObject; } export declare const icons: ("AddSmall" | "Applause" | "ArrowLeft" | "ArrowLeftSmall" | "ArrowRight" | "Avatar" | "AvatarSmall" | "Bike" | "Calendar" | "CalendarSmall" | "Cancel" | "CancelSmall" | "Celebrate" | "Chart" | "ChartSmall" | "ChevronDown" | "ChevronDownSmall" | "ChevronLeft" | "ChevronLeftSmall" | "ChevronRight" | "ChevronRightSmall" | "ChevronUp" | "ChevronUpSmall" | "Clock" | "ClockSmall" | "CreditCard" | "Done" | "DoneSmall" | "DownloadSmall" | "Edit" | "EditSmall" | "Exit" | "Filter" | "Hamburger" | "HandSmall" | "Home" | "Hub" | "HubSmall" | "Informations" | "List" | "Minus" | "MinusSmall" | "Package" | "PackageMove" | "PackageMoveSmall" | "PackagePlus" | "PackagePlusMonochrome" | "Phone" | "Plus" | "PlusSmall" | "Questions" | "QuestionsCircle" | "RiderAvatar" | "Robot" | "Rocket" | "Settings" | "Stop" | "ThumbsUp" | "Timer" | "TimerSmall" | "Tool" | "Trash" | "TrashSmall" | "UploadSmall" | "Users" | "Warning" | "WashingMachine" | "Wave" | "WaveSmall")[]; declare const Icon: React.FC; export default Icon;