import type { UUID } from '../../index.js';
import type { RestFetcher } from '../../rest.js';
import type { Swap, SwapSource } from './types.js';
export declare const createGetSwapBySourceId: (request: RestFetcher) => (params: {
    sourceId: UUID;
}, query: {
    source: SwapSource;
}) => Promise<Swap>;
