import { ComponentProps, FC } from 'react'; import { Colors, DeepPartial } from '../../types/types'; import { LabelTheme } from './theme'; export interface LabelProps extends Omit, "color"> { color?: Colors; disabled?: boolean; theme?: DeepPartial; value?: string; htmlFor: string; } /** * @name Label * @description The Label component is used to display a label to the user in a form or any other component that needs it. * @returns React.FC */ export declare const Label: FC; //# sourceMappingURL=Label.d.ts.map