import { IDirectDebit } from '@atomixdesign/nodepay-core/build/types';
export declare class EzidebitDirectDebit implements IDirectDebit {
    readonly customerId: string;
    readonly paymentReference: string;
    readonly amountInCents: number;
    readonly ezidebitCustomerId?: string | undefined;
    readonly debitDate?: string | undefined;
    readonly username?: string | undefined;
    constructor(customerId: string, paymentReference: string, amountInCents: number, ezidebitCustomerId?: string | undefined, debitDate?: string | undefined, username?: string | undefined);
}
