/** * Docs Command * Generates documentation (DocBlock or OpenAPI) for PHP code */ /** * Options for the docs command */ export interface DocsOptions { format: 'docblock' | 'openapi'; output?: string; model: string; } /** * Execute the docs command * @param targetPath - Path to PHP file(s) to document * @param options - Command options */ export declare function docsCommand(targetPath: string, options: DocsOptions): Promise; //# sourceMappingURL=docs.d.ts.map