/** * Service Methods Index * * This module exports all service method hooks that provide static functions * for interacting with Zenskar APIs without React Query caching or loading states. * * These services allow clients to manage state using their preferred approach: * - React useState + useEffect * - Zustand * - React Query * - SWR * - Any other state management solution */ export { useCheckout } from './useCheckout'; export type { CheckoutServiceMethods } from './useCheckout'; export { useCustomerService } from './useCustomerService'; export type { CustomerServiceMethods } from './useCustomerService'; export type { ZenskarError } from '../../types/elements';