import { type OmitX } from "@agyemanjp/standard"; import { type InputComponent, type InputHTMLAttributes, type InputProps } from "../.."; export declare const InputText: InputComponent; type Props = InputProps & OmitX, "type"> & { choices?: string[]; type?: "long-text" | "text" | "number" | "email" | "password" | "date" | "time" | "datetime-local" | "month" | "week" | "color" | "url" | "tel" | "range"; }; export {};