import { TabSwitcherProps } from '@xh/hoist/cmp/tab/Types'; import { BoxProps, HoistProps } from '@xh/hoist/core'; import { TabContainerModel } from './TabContainerModel'; export interface TabContainerProps extends HoistProps, BoxProps { /** * Indicates whether to include a default switcher docked within this component. Specify as a * boolean or props for a TabSwitcher component. False to not include a switcher. Default true. */ switcher?: boolean | TabSwitcherProps; /** * Props to apply to child TabContainers, if any. Specify as an object or a function * that returns props based on the tabId and depth of the child container. */ childContainerProps?: TabContainerProps | ((ctx: { tabId: string; depth: number; }) => TabContainerProps); } /** * Display a set of child Tabs and (optionally) a switcher control. * * By default, this TabContainer will install a TabSwitcher above the Tabs to control the currently * displayed Tab. The 'switcher' prop can be adjusted to place the switcher control on alternative * edges of the container. * * If `switcher` is set to false then no TabSwitcher will be installed. This setting * is useful for applications that wish to place an associated TabSwitcher elsewhere in the * graphical hierarchy (e.g. a shared menu bar), or control the visible Tab directly via other * means. * * This component's TabContainerModel configures all aspects of this container, including its * children. See that class for more details. */ export declare const TabContainer: import("react").FC, tabContainer: import("@xh/hoist/core").ElementFactory;