import { type ChainId } from '@azuro-org/toolkit';
import { type PrecalculatedCashout } from '../hooks/cashout/usePrecalculatedCashouts';
export declare const batchFetchCashouts: (conditionIds: string[], chainId: ChainId) => Promise<{
    margin: string;
    minMargin: string;
    cashouts: Record<string, PrecalculatedCashout>;
} | undefined>;
