/// /** * An accessible tabs component that provides keyboard interactions and ARIA attributes described in the WAI-ARIA Tabs Design Pattern. * Tabs: Provides context and state for all components * TabList: Wrapper for the Tab components * Tab: element that serves as a label for one of the tab panels and can be activated to display that panel. * TabPanels: Wrapper for the TabPanel components * TabPanel: element that contains the content associated with a tab */ export declare function Tabs({ ...props }: any): JSX.Element; export declare function TabList({ ...props }: any): JSX.Element; export declare function TabPanels({ ...props }: any): JSX.Element; export declare function Tab({ ...props }: any): JSX.Element; export declare function TabPanel({ ...props }: any): JSX.Element; //# sourceMappingURL=Tabs.d.ts.map