interface AnimatedCopyButtonProps {
    /** The text that will be copied to the clipboard */
    textToCopy: string;
    /** Optional classname for the button */
    className?: string;
    /** Size of the button */
    size?: "sm" | "md" | "lg";
    /** Optional callback fired when copied */
    onCopy?: () => void;
}
export declare function AnimatedCopyButton({ textToCopy, className, size, onCopy, }: AnimatedCopyButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=animated-copy-button.d.ts.map