//#region src/constant.d.ts
declare const FORM_SYMBOL: unique symbol;
declare const FORM_FIELD_SYMBOL: unique symbol;
declare const FORM_INVALID_INPUT: unique symbol;
declare const FORM_STATUS: {
  readonly IDLE: "idle";
  readonly PENDING: "pending";
  readonly SUCCESS: "success";
  readonly ERROR: "error";
};
declare const FORM_INPUT: {
  readonly text: "text";
  readonly email: "email";
  readonly url: "url";
  readonly tel: "tel";
  readonly password: "password";
  readonly search: "search";
  readonly hidden: "hidden";
  readonly number: "number";
  readonly range: "range";
  readonly date: "date";
  readonly datetimeLocal: "datetime-local";
  readonly time: "time";
  readonly month: "month";
  readonly week: "week";
  readonly checkbox: "checkbox";
  readonly radio: "radio";
  readonly color: "color";
  readonly toggle: "toggle";
};
//#endregion
export { FORM_FIELD_SYMBOL, FORM_INPUT, FORM_INVALID_INPUT, FORM_STATUS, FORM_SYMBOL };