import { Story } from "@storybook/web-components"; import { IEvent } from "../Event"; import { IRessource } from "../Ressource"; import { UnitLegend } from "../Timeline"; declare const _default: { title: string; component: string; argTypes: { start: { control: { type: string; }; }; end: { control: { type: string; }; }; }; }; export default _default; interface TimelineProps { start: string; end: string; slotduration: number; legendSpan?: number; slotWidth?: number; legendFormat?: Partial; ressources?: Array; events?: Array; } export declare const Generic: Story; export declare const Week: Story; export declare const NestedRessource: Story; export declare const WithEvents: Story; export declare const Rainbow: Story;