import { ReactNode } from 'react';
interface TableErrorStateProps {
error: null | {
status: number;
};
customErrorMsg?: string | ReactNode;
}
export declare function TableErrorState({ customErrorMsg, error }: TableErrorStateProps): JSX.Element;
export {};