import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; interface Creator { avatar?: string; name: string; } export interface TimelineItem { icon?: MaterialIcons; date: Date; creator: Creator; type?: 'default' | 'comment'; description: string; } declare const __propDef: { props: { timeline?: TimelineItem[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type TimelineProps = typeof __propDef.props; export declare type TimelineEvents = typeof __propDef.events; export declare type TimelineSlots = typeof __propDef.slots; export default class Timeline extends SvelteComponentTyped { } export {};