/**
 * Glass Tab Item Component
 * Individual tab item with glassmorphic styling for tab navigation
 */
import React, { CSSProperties, ReactNode } from "react";
/**
 * Glass Tab Item Props
 */
export interface GlassTabItemProps {
    children?: ReactNode;
    label: string;
    value: string;
    active?: boolean;
    disabled?: boolean;
    icon?: ReactNode;
    badge?: string | number;
    onClick?: (value: string) => void;
    className?: string;
    style?: CSSProperties;
    href?: string;
    target?: string;
}
/**
 * Glass Tab Item Component
 */
export declare const GlassTabItem: React.ForwardRefExoticComponent<GlassTabItemProps & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=GlassTabItem.d.ts.map