import * as React from "react"; import { IBasicInputProps } from "../BasicInput/BasicInput"; import { TooltipProps } from '../../overlays/Tooltip/Tooltip'; export interface ICopyInputProps extends IBasicInputProps { invalid?: boolean; label?: string; message?: React.ReactNode; onlyShowMessageWhenInvalid?: boolean; copyButtonTooltipProps?: TooltipProps; disabled?: boolean; inputTooltipProps?: TooltipProps; } export declare const CopyInput: { (props: ICopyInputProps): React.JSX.Element; defaultProps: { invalid: boolean; disabled: boolean; onlyShowMessageWhenInvalid: boolean; }; }; //# sourceMappingURL=CopyInput.d.ts.map