import { BoxProps } from "../Box"; export interface PropertyDiffProps extends BoxProps { property?: string; oldValue?: string; newValue?: string; } export declare const PropertyDiff: (props: PropertyDiffProps) => JSX.Element;