import type { UseMutationOptions } from '@tanstack/react-query'; export type WithCollectionId = { collectionId: number; }; export type WithLoadAmount = { loadAmount: bigint; }; export type MutationConfig = { onError?: UseMutationOptions['onError']; onMutate?: UseMutationOptions['onMutate']; onSettled?: UseMutationOptions['onSettled']; onSuccess?: UseMutationOptions['onSuccess']; }; //# sourceMappingURL=types.d.ts.map