import { locales as defaultLocales } from './locales'; import { DeepPartial } from '../../utils/locales/mergeLocales'; type __VLS_Props = { file?: File | Blob; options?: { pdf?: Record; image?: Record; }; locales?: DeepPartial; /** Active le suivi de consultation du PDF (rendu via pdf.js, chargé à la demande). */ trackConsultation?: boolean; /** * Aperçu en lecture seule : rendu via pdf.js sans barre d'outils native * (téléchargement, impression et annotation indisponibles). */ readonly?: boolean; /** URL du worker pdf.js (optionnel, sinon worker bundlé). */ pdfWorkerSrc?: string; }; type __VLS_PublicProps = { 'complete'?: boolean; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: { viewerRef: HTMLDivElement; pagesHostRef: HTMLDivElement; }; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { loaded: (pageCount: number) => any; "update:complete": (value: boolean) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onLoaded?: ((pageCount: number) => any) | undefined; "onUpdate:complete"?: ((value: boolean) => any) | undefined; }>, { options: { pdf?: Record; image?: Record; }; readonly: boolean; locales: DeepPartial; file: File | Blob; trackConsultation: boolean; pdfWorkerSrc: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { viewerRef: HTMLDivElement; pagesHostRef: HTMLDivElement; }, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };