import type { VerifyConfigOptions } from '../../types.js'; export type BuildDocsOptions = { watch?: boolean; output?: string; title?: string; disableGoogleFont?: boolean; port?: number; templateFileName?: string; templateOptions?: any; redocOptions?: any; redocCurrentVersion: string; }; export type BuildDocsArgv = { api: string; o: string; title?: string; disableGoogleFont?: boolean; template?: string; templateOptions: Record; theme: { openapi: string | Record; }; } & VerifyConfigOptions; //# sourceMappingURL=types.d.ts.map