import React from 'react';
interface Props {
    toCopy: string;
}
declare const CopyToClipboard: React.FC<Props>;
export default CopyToClipboard;
