export declare class CreateSessionDto {
    title: string;
    description?: string;
    startTime: Date;
    endTime: Date;
    location?: string;
    type: string;
    courseId: number;
}
declare const UpdateSessionDto_base: import("@nestjs/common").Type<Partial<CreateSessionDto>>;
export declare class UpdateSessionDto extends UpdateSessionDto_base {
}
export {};
