import { ComponentProps, FC } from 'react'; import { Sublabel } from './Sublabel'; interface ILabelProps extends Omit, 'htmlFor'> { disabled?: boolean; htmlFor: string; } declare const Label: FC & { SubLabel: typeof Sublabel; }; export { Label };