import type { FormTypeProps } from '../form/types.js'; type InputMode = 'amount' | 'price'; interface InputModeState { inputMode: Record<'from' | 'to', InputMode>; setInputMode: (formType: FormTypeProps['formType'], mode: InputMode) => void; toggleInputMode: (formType: FormTypeProps['formType']) => void; } export declare const useInputModeStore: import("zustand").UseBoundStore>; export {};