interface UseApiServiceMutateOptions { baseURL?: string; url: string; config?: any; } interface UseApiServiceMutateResult { data: T | null; loading: boolean; error: any | null; } export declare function useApiServiceMutate(options: UseApiServiceMutateOptions): Promise>; export {};