interface PropsType { text: string; label: string; copyDoneCallback?: (info: { operation: "COPY"; }) => void; classNames?: { container?: string; label?: string; input?: string; }; } declare function InputWithCopyButton(props: PropsType): import("react/jsx-runtime").JSX.Element; export default InputWithCopyButton;