/** @jsx jsx */ import { FC } from 'react'; import copy from 'copy-to-clipboard'; export interface CopyContainerProps { /** name of the property */ name?: string; /** * value to copy */ value: string; /** * maximum length of string to be displayed in copied tooltip */ maxLength?: number; /** * copy-to-clipboard options */ options?: Parameters[1]; } /** * Container component to enclose items that will provide copy functionality on click. * */ export declare const CopyContainer: FC;