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