import { TextProps } from 'antd/es/typography/Text'; import { FC } from 'react'; export interface DiffPathTooltipProps { count?: number; bordered?: boolean; defaultOnlyFailed?: boolean; mode?: 'multiple' | 'single'; typographyProps?: TextProps; onFilterChange?: (onlyFailed: boolean) => void; onSearch?: (value: string) => void; } declare const DiffPathTooltip: FC; export default DiffPathTooltip;