import type { KyInstance } from 'ky';
import type { Currency } from './types.js';
export declare const createDepositSyntheticUsd: (instance: KyInstance) => (body: {
    amount: number;
    currency: Currency;
}) => Promise<{
    depositId: string;
    expiry: number;
    paymentRequest: string;
    syntheticUsdAmount: number;
}>;
//# sourceMappingURL=deposit-synthetic-usd.d.ts.map