import React from 'react'; export interface ClickToCopyProps { text: string; className?: string; } /** * Renders an icon that you can click to copy some text. * * Relies on FontAwesome and `@tippyjs/react`. */ export declare function ClickToCopy({ text, className }: ClickToCopyProps): React.ReactElement;