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