export declare const ComponentSortDirection: {
    readonly Asc: "ASC";
    readonly Desc: "DESC";
};
export type ComponentSortDirection = (typeof ComponentSortDirection)[keyof typeof ComponentSortDirection];
export declare const FormActionType: {
    readonly Create: "create";
    readonly Update: "update";
};
export type FormActionType = (typeof FormActionType)[keyof typeof FormActionType];
export declare const FormButtonsPosition: {
    readonly Top: "top";
    readonly Bottom: "bottom";
    readonly TopAndBottom: "top_and_bottom";
};
export type FormButtonsPosition = (typeof FormButtonsPosition)[keyof typeof FormButtonsPosition];
export declare const FormDataSourceType: {
    readonly DataStore: "DataStore";
    readonly Custom: "Custom";
};
export type FormDataSourceType = (typeof FormDataSourceType)[keyof typeof FormDataSourceType];
export declare const FormFixedPosition: {
    readonly First: "first";
};
export type FormFixedPosition = (typeof FormFixedPosition)[keyof typeof FormFixedPosition];
export declare const FormLabelDecorator: {
    readonly Required: "required";
    readonly Optional: "optional";
    readonly None: "none";
};
export type FormLabelDecorator = (typeof FormLabelDecorator)[keyof typeof FormLabelDecorator];
export declare const FormStorageAccessLevel: {
    readonly Public: "public";
    readonly Protected: "protected";
    readonly Private: "private";
};
export type FormStorageAccessLevel = (typeof FormStorageAccessLevel)[keyof typeof FormStorageAccessLevel];
