import type { ElementType, FC, HTMLAttributes } from 'react';
export interface TabProps extends HTMLAttributes<HTMLElement> {
    active?: boolean;
    tag?: ElementType;
}
declare const Tab: FC<TabProps>;
export default Tab;
