import * as React from 'react';
import type { TabComponentElementType, TabProps } from "../types.js";
export declare function useTab<T extends TabComponentElementType>(tabProps: TabProps<T>): React.HTMLAttributes<HTMLElement> & {
    [key: `data-${string}`]: string | undefined;
};
