import Service from "../../service";
import { PaymentInstrument, PaymentInstrumentInfo, PaymentInstrumentUpdateRequest, TransactionRulesResponse } from "../../typings/balancePlatform/models";
declare class PaymentInstruments extends Service {
    create(request: PaymentInstrumentInfo): Promise<PaymentInstrument>;
    retrieve(id: string): Promise<PaymentInstrument>;
    update(id: string, request: PaymentInstrumentUpdateRequest): Promise<PaymentInstrument>;
    listTransactionRules(id: string): Promise<TransactionRulesResponse>;
}
export default PaymentInstruments;
