import * as React from 'react';
export interface CopyInputProps {
    disabled?: boolean;
    value?: string;
    label?: string;
    type?: 'text' | 'password' | 'email';
    readOnly?: boolean;
    size?: number;
}
export declare const CopyInput: React.FC<CopyInputProps>;
