import { Command } from '@oclif/core';
export default class Search extends Command {
    static args: {
        query: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
    };
    static description: string;
    static examples: string[];
    run(): Promise<void>;
}
