import type { HTMLAttributes } from 'react';
import React from 'react';
import type { FileIconSlot } from '@teambit/code';
import type { CodeCompareViewProps } from './code-compare-view';
export type CodeCompareProps = {
fileIconSlot?: FileIconSlot;
CodeView?: React.ComponentType;
} & HTMLAttributes;
export declare function CodeCompare({ fileIconSlot, className, CodeView }: CodeCompareProps): React.JSX.Element;