import type { TimelineProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [TimelineProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1958) * ## Props * @prop children * @prop order = "default" * @prop class: className * @prop ...restProps */ declare const Timeline: import("svelte").Component; type Timeline = ReturnType; export default Timeline;