/// import type { NodeHasChangedFn } from '@stoplight/types'; import { BoxProps } from '../Box'; export declare type NodeAnnotationProps = { change?: ReturnType; additionalLeftOffset?: number; } & BoxProps<'div'>; /** * This component is primarily used to render change/diff annotations in the UI for elements and JSV components, * in the proposals UI. */ export declare const NodeAnnotation: ({ change, additionalLeftOffset, ...props }: NodeAnnotationProps) => JSX.Element;