/// <reference types="react" />
interface QuickBuyProps {
    variants?: "primary" | "secondary" | "tertiary";
    type?: "button";
    color?: "default" | "black" | "white";
    size?: "default" | "small" | "medium" | "large";
    id?: string;
    ariaLabel?: string;
    label: string;
    className?: string;
    disabled?: boolean;
    onClick?: () => void;
}
export declare const QuickBuy: ({ variants, type, color, id, ariaLabel, size, label, className, disabled, onClick, ...props }: QuickBuyProps) => JSX.Element;
export {};
