/// import { TextFieldSize } from '../text-field'; import { FormInputState } from '../form/types'; import { MQ } from '../utils/style'; import { LogicalProps } from '../utils/logical-properties'; export interface LabelOverrides extends LogicalProps { stylePreset?: MQ; typographyPreset?: MQ; /** * @deprecated This property is deprecated and will be removed in the next major release. Use `marginBlockEnd` instead. */ spaceStack?: MQ; /** * @deprecated This property is deprecated and will be removed in the next major release. Use `marginInlineEnd` instead. */ spaceInline?: MQ; } export type LabelProps = React.LabelHTMLAttributes & { size?: TextFieldSize; state?: FormInputState; children: React.ReactNode; overrides?: LabelOverrides; }; //# sourceMappingURL=types.d.ts.map