import type { ElementType } from 'react'; import { type BoxProps } from '../Box'; export type LabelProps = Omit & { disabled?: boolean; required?: boolean; is?: (ElementType & string) | undefined; }; declare const Label: import("react").ForwardRefExoticComponent & { disabled?: boolean; required?: boolean; is?: (ElementType & string) | undefined; } & import("react").RefAttributes>; export default Label; //# sourceMappingURL=Label.d.ts.map