import { z } from 'zod'; export type PDFViewerData = { openFiles: string[]; }; /** Manifest schema for PDFViewer.app's `data` (see registerApp). */ export declare const PDFViewerDataSchema: z.ZodObject<{ openFiles: z.ZodOptional>; }, z.core.$loose>; export declare function isPDFViewerData(d: Record): d is PDFViewerData; export declare const PDFViewerAppInfo: { name: string; id: string; icon: string; }; //# sourceMappingURL=PDFViewerUtils.d.ts.map