import { IBaseCharge } from '@atomixdesign/nodepay-core/build/types';
export declare class PaywayCharge implements IBaseCharge {
    readonly orderNumber: string;
    readonly amountInCents: number;
    readonly customerId?: string | undefined;
    readonly customerIpAddress?: string | undefined;
    readonly merchantId?: string | undefined;
    readonly singleUseTokenId?: string | undefined;
    constructor(orderNumber: string, amountInCents: number, customerId?: string | undefined, customerIpAddress?: string | undefined, merchantId?: string | undefined, singleUseTokenId?: string | undefined);
}
