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