import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { InputProps } from "./input.types.js";
import { HelpText } from "./helpText.js";
import { InputIcon } from "./inputIcon.js";
import { InputInput } from "./inputInput.js";
//#region src/input/input.d.ts
/**
 * @deprecated Use `TextField` instead. `Input` is a thin wrapper kept for backward compatibility and
 * will be removed in a future major version.
 */
declare const Input: VuiComponent<'div', InputProps> & {
  Icon: typeof InputIcon;
  Input: typeof InputInput;
  HelpText: typeof HelpText;
};
//#endregion
export { Input, Input as default };

//# sourceMappingURL=input.d.ts.map