import { PaystreamPaymentFrequency } from './payment-frequency';
export declare class PaystreamSubscription {
    readonly customerId: string;
    readonly plan: string;
    readonly frequency: PaystreamPaymentFrequency;
    readonly startDate: string;
    readonly reference: string;
    readonly isActive: boolean;
    constructor(customerId: string, plan: string, frequency: PaystreamPaymentFrequency, startDate: string, reference: string, isActive: boolean);
}
