import type { SxProps } from '@mui/material';
import React, { FC } from 'react';
declare const JsonObjectTable: FC<{
    title?: string;
    description?: string;
    children: React.ReactNode;
    sx?: SxProps;
}>;
export default JsonObjectTable;
