import React from 'react';
/** This component should be used internally by other copy buttons  */
export declare const CopyIconButton: ({ isAddressCopied, onCopyAddress, }: {
    isAddressCopied: boolean;
    onCopyAddress: () => void;
}) => React.JSX.Element;
