import { ReactNode } from 'react'; interface TabPaneWithToolbarProps { actions?: ReactNode; extraActions?: ReactNode; children?: ReactNode; } export declare function TabPaneWithToolbar(props: TabPaneWithToolbarProps): import("react/jsx-runtime").JSX.Element; export {};