import { VariantProps } from 'class-variance-authority'; import { RippleOptions } from '../../hooks/use-ripple/use-ripple'; import { DeepPartial } from '../../types'; import { ButtonTheme } from './theme'; import * as React from "react"; declare const variants: { variant: { filled: string; outline: string; ghost: string; link: string; }; size: { md: string; sm: string; xs: string; lg: string; xl: string; }; color: { primary: string; secondary: string; error: string; info: string; success: string; warning: string; }; rounded: { none: string; xs: string; sm: string; md: string; lg: string; xl: string; full: string; "2xl": string; "3xl": string; }; fullSized: { true: string; false: string; }; }; export type Variants = typeof variants; export declare const buttonVariants: (props?: ({ variant?: "link" | "outline" | "filled" | "ghost" | null | undefined; size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined; color?: "info" | "error" | "success" | "warning" | "primary" | "secondary" | null | undefined; rounded?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "none" | null | undefined; fullSized?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export interface ButtonProps extends Omit, "color">, VariantProps { asChild?: boolean; label?: string; loading?: boolean; fullSized?: boolean; loader?: React.ReactNode; focusEffect?: boolean; theme?: DeepPartial; rippleOptions?: Partial; } export type ButtonVariants = keyof typeof variants.variant; export type VariantsEnum = keyof typeof variants; export declare const Button: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Button.d.ts.map