import type { LocationRange } from './parsers/index.js';
interface Options {
    colors?: boolean;
    filename?: string;
    linesAbove?: number;
    linesBelow?: number;
    maxLineWidth?: number;
    message?: string;
    title?: string;
}
export declare function codespan(rawLines: readonly string[], location: LocationRange, opts: Options): string;
export {};
