type prop = {
    value: string;
    onChange: (text: string) => void;
};
declare const InputText: ({ value, onChange }: prop) => import("react/jsx-runtime").JSX.Element;
export default InputText;
//# sourceMappingURL=Text.d.ts.map