Repository URL to install this package:
|
Version:
0.4.48 ▾
|
import React from "react";
type Props = {
value: string;
onChange: (value: string) => void;
onSubmit: (value: string) => void;
onCancel: () => void;
placeholder?: string;
prompt?: string;
};
export declare function TextInput({ value, onChange, onSubmit, onCancel, placeholder, prompt }: Props): React.JSX.Element;
export {};
//# sourceMappingURL=TextInput.d.ts.map