import { IValidatable } from './validation';
export declare class CustomerProductPlanApiPayload implements IValidatable {
    customerId: string;
    productPlanId: string;
    productId?: string;
    startTimeInSeconds?: number;
    endTimeInSeconds?: number;
    constructor(customerId: string, productPlanId: string);
    validate(): void;
}
export declare class CustomerProductPlan {
    customerId: string;
    productPlanId: string;
    productId: string;
    startTimeInSeconds: number;
    endTimeInSeconds: number;
}
