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";
    readonly Medium: "medium";
    readonly Large: "large";
};
export type LabelPosition = ValueOf<typeof LabelPosition>;
export type FormItemWidth = ValueOf<typeof FormItemWidth>;
