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