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