import { HTMLAttributes } from 'react';
import { UnionOmit } from '@co-hooks/util';
export interface ISidebarTabItem {
    active?: boolean;
    id: string;
}
export declare type ISidebarTabItemProps = UnionOmit<ISidebarTabItem, HTMLAttributes<HTMLDivElement>>;
export declare function SidebarTabItem(props: ISidebarTabItemProps): JSX.Element;
