import { VariantProps } from 'class-variance-authority';
export declare const buttonVariants: (props?: ({
    variant?: "link" | "solid" | "outline" | null | undefined;
    color?: "primary" | "secondary" | "success" | "warning" | "danger" | null | undefined;
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
export type ButtonVariantsProps = VariantProps<typeof buttonVariants>;
