import type { ComponentPropsWithRef, ElementType } from 'react'; export type TabProperties = { /** section title */ sectionTitle?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Singular tab component to be used in a tab group. * @docs {@link https://design.visa.com/components/tabs/?code_library=react | See Docs} */ declare const Tab: { ({ className, sectionTitle, tag: Tag, ...remainingProps }: TabProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Tab;