export * from './document-tools.js';
export * from './list-tools.js';
export interface SearchDocumentsByTagsParams {
    /**
     * Array of tags to search for
     */
    tags: string[];
    /**
     * Match type: 'and' requires all tags, 'or' requires any tag
     */
    match?: 'and' | 'or';
    /**
     * Search scope: 'branch', 'global', or 'all'
     */
    scope?: 'branch' | 'global' | 'all';
    /**
     * Branch name (required if scope is 'branch' or 'all', auto-detected in project mode)
     */
    branch?: string;
    /**
     * Path to docs directory
     */
    docs: string;
}
export declare const search_documents_by_tags: (params: SearchDocumentsByTagsParams) => Promise<never>;
export declare const read_context: (params: any) => Promise<never>;
//# sourceMappingURL=index.d.ts.map