/** @jsx jsx */ import { FunctionComponent } from 'react'; interface ICopyToClipboardProps { /** * The text to copy */ text: string; /** * Hint showed when hovering the element */ hint: string; } export declare const CopyToClipboard: FunctionComponent; export {};