import * as React from 'react'; import { StandardProps } from '../../common'; import { TabOptions } from '../TabControl'; import { ContentSwitchOrientation } from './ContentSwitchTypes.part'; export { ContentSwitchOrientation }; export interface ContentSwitchProps extends TabOptions, StandardProps { /** * The children, usually passed as a collection of Content switch elements. */ children?: React.ReactNode; /** * Optionally sets the content switch mode to use. */ orientation?: ContentSwitchOrientation; } export declare const ContentSwitch: React.FC & { inner: { readonly SwitchPanel: React.FC> & { inner: { readonly Component: React.ComponentType; }; }; }; };