export declare class PaystreamPaymentPlan {
    readonly name: string;
    readonly amount: number;
    readonly reference: string;
    readonly description: string;
    constructor(name: string, amount: number, reference: string, description: string);
}
