import * as React from 'react'; import { FormControlProps } from './FormControl'; export interface TextWithCopyProps extends FormControlProps { value?: string; } export interface TextWithCopyState { className: string; } export declare class TextWithCopy extends React.Component { /** * constructor */ constructor(props: TextWithCopyProps); private onCopy; private setSuccess; private setPrimary; render(): JSX.Element; }