import { ObjectBase } from '@tomei/general';
export default class PaymentMethodType extends ObjectBase {
    MethodTypeId: string;
    MethodId: string;
    Name: string;
    AccountNo: string;
    ProcessingFeeRate: number;
    ProcessingFeeAccountNo: string;
    private _ObjectType;
    get ObjectType(): string;
    private _DbTransaction;
    private static _RepositoryBase;
    constructor(dbTransaction?: any, methodTypeId?: string);
    static initMethodType(dbTransaction: any, methodTypeId: string): Promise<PaymentMethodType>;
    get ObjectId(): string;
    get ObjectName(): string;
    get TableName(): string;
}
//# sourceMappingURL=payment-method-type.d.ts.map