import { InputProps } from 'antd/lib/input/Input'; type CopiableInputProps = { label?: string; wrapperStyle?: object; onCopyClick?: (value: string) => void; } & InputProps; export declare function CopiableInput({ label, value, onCopyClick, wrapperStyle, ...props }: CopiableInputProps): import("react/jsx-runtime").JSX.Element; export {};