import { KeyboardOptions } from "../../lib/keyboard.js"; import * as react_jsx_runtime3 from "react/jsx-runtime"; import { InputProps } from "@lssm/lib.ui-kit-web/ui/input"; //#region src/components/atoms/Input.d.ts interface BaseFieldProps { onSubmit?: () => void; onFocus?: () => void; placeholder?: string; disabled?: boolean; readOnly?: boolean; maxLength?: number; name?: string; className?: string; keyboard?: KeyboardOptions; } type InputProps$1 = Omit & BaseFieldProps; declare function Input$1({ value, defaultValue, onChange, onSubmit, onFocus, onBlur, placeholder, disabled, readOnly, maxLength, name, className, keyboard, ...rest }: InputProps$1): react_jsx_runtime3.JSX.Element; //#endregion export { Input$1 as Input }; //# sourceMappingURL=Input.d.ts.map