import React, { PropsWithChildren } from "react"; import { IconName } from "../Icon"; export type TabProps = PropsWithChildren & { /** * Title of the tab. */ title: string; /** * Optional icon name. If provided, the tab title will have an icon rendered on its left side. */ iconName?: IconName; /** * Whether or not the tab should be disabled. This ignores touch and renders the tab in a disabled state. */ disabled?: boolean; }; export declare const Tab: ({ title, disabled, iconName }: TabProps) => React.JSX.Element;