import { TabNode } from "../model/TabNode"; export interface ITabLayoutProps { tabNode: TabNode; } /** * Component that can be used within the factory to render a tabs defined sublayout. * This allows the sublayout to be surrounded by other controls, e.g. a header and footer bars * * @category Components * @group Main Layout */ export declare const TabLayout: (props: ITabLayoutProps) => import("react").JSX.Element | undefined;