import { VariantProps } from 'class-variance-authority';
import { ButtonHTMLAttributes, ReactNode } from 'react';
import { ButtonColorTypes, ButtonRoundedTypes, TabSizeTypes } from '../../../types/button-types';
declare const TaButtonVariants: (props?: ({
    variant?: "link" | "transparent" | "contained" | "outlined" | "soft" | null | undefined;
    color?: "dark" | "light" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | null | undefined;
    size?: "sm" | "md" | "lg" | null | undefined;
    rounded?: "sm" | "md" | "lg" | "none" | "full" | null | undefined;
    isIcon?: boolean | null | undefined;
    fullWidth?: boolean | null | undefined;
    pressed?: boolean | null | undefined;
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
type TabButtonVariantTypes = "contained" | "outlined" | "soft" | "transparent" | "link";
export interface TabButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, Omit<VariantProps<typeof TaButtonVariants>, "size"> {
    variant: TabButtonVariantTypes;
    size?: TabSizeTypes | "xl";
    children: ReactNode;
    rounded?: ButtonRoundedTypes;
    href?: string;
    color?: ButtonColorTypes;
    startIcon?: ReactNode;
    endIcon?: ReactNode;
    isLoading?: boolean;
    isActive?: boolean;
    fullWidth?: boolean;
    pressed?: boolean;
    labelPosition?: "left" | "right" | "center";
    id?: string;
}
declare const TabButton: import('react').ForwardRefExoticComponent<TabButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
export default TabButton;
