import { FunctionComponent } from 'react'; import { FileOutputViewer } from '../types.js'; export interface FileOutputProps { readonly filename: string; readonly content: string; readonly viewers: Record; /** Line numbers to highlight as changed (1-based). */ readonly changedLineNumbers?: number[]; } /** * Display a file output using different viewers. */ export declare const FileOutput: FunctionComponent; //# sourceMappingURL=file-output.d.ts.map