import FormSkeleton from './FormSkeleton';
import FormSwitcher from './FormSwitcher';
import rhf from './rhf';
import UIForm, { Code } from './UIForm';
import validate from './validate';
declare const constants: {
    I18N_DOMAIN_FORMS: string;
};
declare const utils: {
    validate: typeof validate;
};
export { FormSwitcher, constants, utils, FormSkeleton, rhf, UIForm };
export type { DisplayMode, UiSchema, FormDefinition } from './types/index';
declare const _default: typeof FormSwitcher & {
    constants: {
        I18N_DOMAIN_FORMS: string;
    };
    utils: {
        validate: typeof validate;
    };
    Skeleton: typeof FormSkeleton;
    rhf: {
        Input: typeof import("./rhf/fields/Input").default;
        Select: typeof import("./rhf/fields/Select").default;
        TextArea: typeof import("./rhf/fields/TextArea").default;
    };
    UIForm: typeof UIForm;
    Code: typeof Code;
};
export default _default;
