import React from "react";
/**
 * This component is based on the `button` element and supports all of its props
 */
declare const Copy: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLButtonElement> & {
    content: string;
    variant?: "mini" | "default" | null;
    asChild?: boolean;
} & React.RefAttributes<HTMLButtonElement>>;
export { Copy };
//# sourceMappingURL=copy.d.ts.map