import { FormTypeProps } from "../form/types.js"; import { StoreApi, UseBoundStore } from "zustand"; //#region src/stores/inputMode/useInputModeStore.d.ts type InputMode = "amount" | "price"; interface InputModeState { inputMode: Record<"from" | "to", InputMode>; setInputMode: (formType: FormTypeProps["formType"], mode: InputMode) => void; toggleInputMode: (formType: FormTypeProps["formType"]) => void; } declare const useInputModeStore: UseBoundStore>; //#endregion export { useInputModeStore }; //# sourceMappingURL=useInputModeStore.d.ts.map