export declare const buttonVariant: (props?: ({
    intent?: "primary" | "secondary" | "primary_outline" | "secondary_outline" | "primary_borderless" | "secondary_borderless" | null | undefined;
    size?: "small" | "medium" | null | undefined;
    radius?: "none" | "sm" | "md" | "lg" | "xl" | "full" | "pill" | "fat" | null | undefined;
    fullWidth?: boolean | null | undefined;
    disabled?: boolean | null | undefined;
    loading?: boolean | null | undefined;
    iconPosition?: "left" | "right" | null | undefined;
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
