export declare const JsonViewer: ({ json, title, expand, showSize, showCopy, copyIconProps, className, }: {
    json: object;
    title?: string;
    expand?: number;
    showSize?: boolean;
    showCopy?: boolean;
    copyIconProps?: any;
    className?: string;
}) => import("react/jsx-runtime").JSX.Element;
