import type { SearchResult } from "../volume.js"; interface SgrepArgs { query: string; filepath?: string; help: boolean; } export declare function parseSgrepArgs(argv: string[]): SgrepArgs | { error: string; }; export declare function formatSgrepOutput(results: SearchResult[], includeDocIds?: boolean): string; export interface SgrepCommandOptions { includeDocIds?: boolean; } export declare function createSgrepCommand(opts?: SgrepCommandOptions): import("just-bash").Command; export declare const sgrepCommand: import("just-bash").Command; export {}; //# sourceMappingURL=sgrep.d.ts.map