import { SdkContext, SdkResponse } from "../../model";
import { ErrorResponse, FindRefundsResponse } from "../model/domain";
import { FindRefundsParams } from "../model/refunds";
export declare function find(sdkContext: SdkContext): (merchantId: string, paymentContext: FindRefundsParams) => Promise<SdkResponse<FindRefundsResponse, ErrorResponse>>;
