interface IArgs { chromeExecutable: string; input: string; debug?: "browser" | "url"; outputPath?: string; puppeteerArgs?: string[]; } declare const pdfGenerator: (args: IArgs) => Promise | undefined>; export default pdfGenerator;