import React from 'react'; export interface TabContentLoadingProps { renderLoadingIndicator?(): React.ReactNode; } /** * The component that is displayed while a tab is loading in [[`TabManager`]]. */ export declare function TabContentLoading(props: TabContentLoadingProps): React.ReactElement;