import type { Component, PropType } from 'vue'; export interface IField { type?: string; props?: Record; label?: string; updateProps?: Record; createProps?: Record; style?: string; class?: string; condition?: (value: Record) => boolean; } declare const _default: import("vue").DefineComponent<{ fields: { type: PropType; required: true; }; inline: { type: BooleanConstructor; default: boolean; }; modelValue: { type: PropType | null>; default: null; }; disabled: { type: BooleanConstructor; default: boolean; }; errors: { type: PropType; default: null; }; allErrors: { type: PropType | null>; default: null; }; placeholder: { type: StringConstructor; default: string; }; required: { type: BooleanConstructor; default: boolean; }; fieldKey: { type: StringConstructor; default: string; }; context: { type: PropType | null>; default: null; }; formObject: { type: PropType | null>; default: null; }; formObjectId: { type: (StringConstructor | NumberConstructor)[]; default: string; }; }, { availableFields: import("vue").ComputedRef>; updateItem(k: string, v: unknown): void; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; required: true; }; inline: { type: BooleanConstructor; default: boolean; }; modelValue: { type: PropType | null>; default: null; }; disabled: { type: BooleanConstructor; default: boolean; }; errors: { type: PropType; default: null; }; allErrors: { type: PropType | null>; default: null; }; placeholder: { type: StringConstructor; default: string; }; required: { type: BooleanConstructor; default: boolean; }; fieldKey: { type: StringConstructor; default: string; }; context: { type: PropType | null>; default: null; }; formObject: { type: PropType | null>; default: null; }; formObjectId: { type: (StringConstructor | NumberConstructor)[]; default: string; }; }>> & { "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }, { required: boolean; modelValue: Record | null; disabled: boolean; errors: string[] | null; allErrors: Record | null; placeholder: string; fieldKey: string; context: Record | null; formObject: Record | null; formObjectId: string | number; inline: boolean; }>; export default _default;