import { RenderOptions } from './renderer.js'; interface CliArgs { options: RenderOptions; output?: string; docinfoPath?: string; sourceMapPath?: string; /** * `--print-preview`: a printout id, or `true` for "whichever printout this * document is about". Which one that is cannot be known until the page has * been rendered, so unlike the other options this one is applied afterwards * (see main). */ printPreview?: string | true; } export declare function parseArgs(argv: string[]): CliArgs; export declare function main(argv: string[]): Promise; export {};