import type { LocalServerConfig } from '../types.js'; import type { SearchMatch } from '@burger-editor/inspector'; export interface OutputOptions { readonly showUrl: boolean; readonly config: LocalServerConfig; } /** * Format search match for output * @param match Search match result * @param options Output options (URL format and config) * @returns Formatted output string * @example * // Default output * formatOutput(match, { showUrl: false, config }) * // => "/absolute/path/to/file.html:89" * * // URL output * formatOutput(match, { showUrl: true, config }) * // => "http://localhost:5255/relative/path/file.html:89" */ export declare function formatOutput(match: SearchMatch, options: OutputOptions): string; //# sourceMappingURL=output-formatter.d.ts.map