import { FC } from 'react'; export type IconName = 'bullets-list' | 'calendar' | 'checkmark' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'cross' | 'ellipsis-vertical' | 'ellipsis' | 'person' | 'plus' | 'search' | 'tag' | 'warning'; export interface IconProps { /** Name of the icon. */ name: IconName; /** Main color of the icon. */ color?: string; } export declare const Icon: FC;