import { icons } from '../../icons/Icon'; export interface LabelProps { icon?: keyof typeof icons; size?: 'small' | 'medium' | 'large'; text: string; } declare const Label: ({ text, icon, size }: LabelProps) => JSX.Element; export default Label;