import { DiffLineAnnotation } from "../types.js"; import { CSSProperties, ReactNode } from "react"; //#region src/ssr/FileDiffReact.d.ts interface FileDiffSsrProps { prerenderedHTML: string; annotations?: DiffLineAnnotation[]; renderAnnotation?(annotations: DiffLineAnnotation): ReactNode; className?: string; style?: CSSProperties; } declare function FileDiffSSR({ prerenderedHTML, annotations, className, style, renderAnnotation }: FileDiffSsrProps): React.JSX.Element; //#endregion export { FileDiffSSR }; //# sourceMappingURL=FileDiffReact.d.ts.map