export declare const useService: ({ renderMode, onEdit, state, dispatch, }: { renderMode?: any; onEdit?: any; state?: any; dispatch?: any; }) => { createBookingData: ({ product }: any) => Promise; editBookingData: ({ changeValues }: { changeValues: any; }) => Promise; createBooking: ({ booking }: { booking: any; }) => Promise; editBooking: ({ booking }: { booking: any; }) => Promise; goEditPanel: ({ booking }: { booking: any; }) => void; };