import React from 'react'; import { type VariantProps } from 'class-variance-authority'; declare const ButtonStyles: (props?: ({ variant?: "primary" | "secondary" | "red-accent" | null | undefined; fullWidth?: boolean | null | undefined; size?: "m" | "xs" | "l" | "xl" | "xxl" | null | undefined; rounded?: "m" | "l" | null | undefined; disabled?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { isLoading?: boolean; disabled?: boolean; } export declare const Button: ({ type, children, onClick, size, variant, rounded, fullWidth, disabled, isLoading, className, ...buttonProps }: ButtonProps) => import("react/jsx-runtime").JSX.Element; export default Button; //# sourceMappingURL=index.d.ts.map