type __VLS_Props = {
    id: string;
    title?: string;
    description?: string;
    jsonSchemaPath: string;
    properties: PropertiesType;
    modelValue: Record<string, unknown>;
    required?: string[];
    isRequired: boolean;
    setHidden?: (value: boolean) => void;
};
type PropertiesType = {
    [key: string]: Record<string, unknown>;
};
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;
