import type { PropType } from 'vue'; export declare function getCommonProps(modelValue: T): { modelValue: T; 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; }; };