import type { ProjectIndexer } from '../core/indexer.js';
export interface SearchMethodsArgs {
    query: string;
    type?: 'method' | 'function' | 'class' | 'interface' | 'type' | 'all';
    includeUsages?: boolean;
}
export declare function searchMethodsTool(indexer: ProjectIndexer, args: SearchMethodsArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
//# sourceMappingURL=search-methods.d.ts.map