import { studTlElem as _studTlElem, studCommonTlEvent as _studCommonTlEvent } from "ecoledirecte-api-types/v3";
import { ExpandedBase64 } from "./ExpandedB64";
export declare class TimelineElem {
    date: Date;
    type: string;
    id: number;
    title: string;
    subtitle: string;
    content: string;
    _raw: _studTlElem;
    constructor(o: _studTlElem);
}
export declare class TimelineEvent {
    id: number;
    title: string;
    description: ExpandedBase64;
    start: Date;
    end: Date;
    cibles: Array<"F" | "E" | "A" | "P">;
    _raw: _studCommonTlEvent;
    constructor(o: _studCommonTlEvent);
}
