import { Path } from '@sanity/types'; import React from 'react'; import { TooltipProps } from '@sanity/ui'; import { Diff } from '../../diff'; import { AnnotationDetails } from '../../types'; interface DiffTooltipProps extends TooltipProps { children: React.ReactElement; description?: React.ReactNode; diff: Diff; path?: Path | string; } interface DiffTooltipWithAnnotationsProps extends TooltipProps { annotations: AnnotationDetails[]; children: React.ReactElement; description?: React.ReactNode; } export declare function DiffTooltip(props: DiffTooltipProps | DiffTooltipWithAnnotationsProps): React.JSX.Element; export {}; //# sourceMappingURL=DiffTooltip.d.ts.map