import React, { ReactNode } from 'react'; export interface NestedTableContentContentBaseProps { children?: ReactNode; } export interface NestedTableContentContentProps extends NestedTableContentContentBaseProps { state: { showLoadingState: boolean; showErrorState: boolean; init: ({ isUsingCache }: { isUsingCache?: boolean; }) => () => void; }; } declare function _NestedTableContent(props: NestedTableContentContentProps): React.JSX.Element; export declare const NestedTableContent: typeof _NestedTableContent & { displayName: string; }; export {}; //# sourceMappingURL=NestedTableContent.d.ts.map