export interface DocsConfig { $schema?: string; version: string; generator: string; basePath: string; guides?: { include?: string | string[]; exclude?: string | string[]; }; api?: { include?: string | string[]; exclude?: string | string[]; }; } export interface Manifest { version: string; generated: string; generator: { tool: string; version: string; plugin?: string; toolsVersion: string; }; metadata: { repository: string; branch: string; commit: string; name: string; title: string; description: string; }; extra?: Record; } export interface BuildOptions { configPath?: string; verbose?: boolean; quiet?: boolean; } export interface BuildVersionOptions { tag: string; repoPath?: string; publishBranch?: string; verbose?: boolean; } export interface ManifestOptions { configPath?: string; outputDir?: string; metadata?: Record; verbose?: boolean; } export interface LoggerOptions { verbose?: boolean; quiet?: boolean; } export interface InitOptions { force?: boolean; verbose?: boolean; } export interface StageOptions { configPath?: string; targetDir?: string; version?: string; updateLatest?: boolean; verbose?: boolean; quiet?: boolean; } //# sourceMappingURL=types.d.ts.map