import * as React from 'react'; import { StandardProps } from '../../common'; import { TabOptions } from '../TabControl'; import { TabsMode } from './Tabs.part'; export { TabsMode }; export interface TabsProps extends TabOptions, StandardProps { /** * The children, usually passed as a collection of TabPage elements. */ children?: React.ReactNode; /** * Optionally sets the tabs mode to use. */ mode?: TabsMode; } /** * The tabs component displays a toggling list of content. It features a * header that makes selecting tabs possible and a content list. * * The component contains an optional automatic selection of the best view. */ export declare const Tabs: React.FC & { inner: { readonly TabControl: React.FC> & { inner: { readonly Component: React.ComponentType; }; }; }; };