import type { ComponentPropsWithRef, ElementType } from 'react';
export type TabProperties<ET extends ElementType = 'li'> = {
    /** section title */
    sectionTitle?: boolean;
    /** Tag of Component */
    tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
 * 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: {
    <ET extends ElementType = "li">({ className, sectionTitle, tag: Tag, ...remainingProps }: TabProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default Tab;
