import type { PublicFileReference } from '@/models/file-reference/fileReference.model'; import type { FileReferenceForm } from '@/models/file-reference/fileReferenceForm.model'; declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import("vue").PublicProps & __VLS_PrettifyLocal<({ /** * The id of the element. If set to `null`, no ID will be applied. * @default null */ id?: string | null; /** * Whether the input is required. * @default false */ isRequired?: boolean; /** * Whether the input is touched. Used to determine if an error should be shown. * @default false */ isTouched?: boolean; /** * */ accept: string[]; /** * The error associated with the input. * @default null */ errorMessage?: string | null; externalAttachments?: PublicFileReference[]; /** * The hint text of the input. * @default null */ hint?: string | null; /** * The label of the input. * @default null */ label?: string | null; } & { modelValue: TValue; }) & { "onUpdate:modelValue"?: ((value: TValue) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: {}) => void; attrs: any; slots: {}; emit: (event: "update:modelValue", value: TValue) => void; }>) => import("vue").VNode & { __ctx?: Awaited; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};