import * as yargs from 'yargs'; export type DocOptions = { input: string; output: string; tsconfig: string | undefined; verbose: boolean; }; export declare function getDocOptions(yargs: yargs.Argv): yargs.Argv;