export declare class FatzebraDirectDebit {
    readonly description: string;
    readonly amount: number;
    readonly accountName?: string | undefined;
    readonly accountNumber?: string | undefined;
    readonly BSBNumber?: string | undefined;
    readonly date?: string | undefined;
    readonly reference?: string | undefined;
    readonly bankAccount?: string | undefined;
    constructor(description: string, amount: number, accountName?: string | undefined, accountNumber?: string | undefined, BSBNumber?: string | undefined, date?: string | undefined, reference?: string | undefined, bankAccount?: string | undefined);
}
