import React from "react"; import type { KeyboardTypeOptions } from "react-native"; import { type InputProps, type TextAreaProps, type TextFieldRootProps } from "heroui-native"; export interface NInputProps extends Omit { value?: string; onChange?: (text: string) => void; placeholder?: string; keyboardType?: KeyboardTypeOptions; secureTextEntry?: boolean; label?: string; description?: string; /** Alias of `description`, as the React package names it. */ helperText?: string; errorMessage?: string; /** Alias of `errorMessage`. */ error?: string; /** Alias of `isDisabled`. */ disabled?: boolean; multiline?: boolean; inputProps?: InputProps; textAreaProps?: TextAreaProps; containerClassName?: string; labelClassName?: string; descriptionClassName?: string; errorClassName?: string; } export declare const NInput: React.NamedExoticComponent; //# sourceMappingURL=NInput.d.ts.map