import { ValueOf } from '../internal/types'; export declare const LabelPosition: { readonly Top: "top"; readonly Left: "left"; readonly Right: "right"; }; export declare const FormItemWidth: { readonly Small: "small"; /** * @deprecated Prefer to 'Large' */ readonly Medium: "medium"; readonly Large: "large"; }; export type LabelPosition = ValueOf; export type FormItemWidth = ValueOf;