export declare const MOCK_TIMELINE_ITEM: ({
    title: string;
    type: string;
    reason: string;
    subtitle: string;
    tasks: {
        title: string;
        assignee: string;
    }[];
    completed: boolean;
} | {
    title: string;
    type: string;
    tasks: {
        title: string;
        assignee: string;
    }[];
    completed: boolean;
    reason?: undefined;
    subtitle?: undefined;
} | {
    title: string;
    type: string;
    reason: string;
    subtitle: string;
    tasks: {
        title: string;
    }[];
    completed: boolean;
})[];
