import { BoxProps } from '@chakra-ui/react'; import { ReactNode } from 'react'; export declare type TableContainerProps = { children: ReactNode; loadingComponent: ReactNode; } & BoxProps; export declare const TableLoading: ({ children, loadingComponent, ...props }: TableContainerProps) => JSX.Element;