import { Resume, Theme } from './types.js'; type PuppeteerOptions = { moduleName?: string; args?: string[]; }; export declare const pdf: (html: string, resume: Resume, themeModule: Theme, { moduleName, args }?: PuppeteerOptions) => Promise>; export {};