import type { AssetType } from '../schemas.js'; export interface SearchCommandOptions { type: AssetType; unapproved?: boolean; baseUrl?: string; limit?: number; /** Emit a machine-readable JSON array instead of the human-readable lines. */ json?: boolean; } export declare function searchCommand(query: string, opts: SearchCommandOptions): Promise; //# sourceMappingURL=search.d.ts.map