import React, { PropsWithChildren } from 'react'; export interface TabProps extends PropsWithChildren { /** * ID of the Tab. It has to be a unique string */ id: string; /** * Title of the Tab that will be shown on the tab navigation bar. */ label: string; } /** * Renders children inside Tabs component. Each Tab will add a single tab in * the navigation bar. */ export declare const Tab: React.FC; export default Tab;