import type { UUID } from '../../index.js';
import type { RestFetcher } from '../../rest.js';
import type { Currency } from './types.js';
export declare const createDepositSyntheticUsd: (request: RestFetcher) => (body: {
    amount: number;
    currency: Currency;
}) => Promise<{
    depositId: UUID;
    expiry: number;
    paymentRequest: string;
    syntheticUsdAmount: number;
}>;
