import * as React from "react"; import type { Props as InputFieldProps } from "@kiwicom/orbit-components/lib/InputField"; declare type Props = Omit & { readonly label?: string; readonly placeholder?: string; readonly help?: React.ReactNode; readonly value?: string; readonly validationMode?: "afterFirstBlur" | "always" | "never"; readonly validate?: (value: string) => string | null; readonly onChange?: (value: string) => void; }; declare const Input: (props: Props) => JSX.Element; export default Input;