import { AccessTypeEnum } from '../../../types/openapi'; declare enum FileExpiration { Never = "never", At = "at", Expired = "expired" } export interface Form { permissions?: { can_share?: boolean; }; tags?: string[]; tagUpdateOperation?: 'add' | 'remove' | 'replace' | 'clear'; expiresAtDateTime?: number | null; expiresAtOption?: FileExpiration; accessType?: AccessTypeEnum; [key: string]: any; } type __VLS_Props = { modelValue: Form; appName?: string; showKeepAsIsPlaceholder?: boolean; showExpirationSettings?: boolean; showPermissionSettings?: boolean; showAccessTypeSettings?: boolean; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (form: Form) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:modelValue"?: ((form: Form) => any) | undefined; }>, { showExpirationSettings: boolean; showPermissionSettings: boolean; showAccessTypeSettings: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default;