import { LegacyCommand } from '../../legacy-command';
import { Doc } from '../../../search/indexer';
export default class Search implements LegacyCommand {
    name: string;
    private: boolean;
    internal: boolean;
    description: string;
    alias: string;
    opts: never[];
    action([path, args]: [string, string]): Promise<any>;
    report(searchResults: Array<Doc>): string;
}
