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#L1806)
 * ## Props
 * @prop children
 * @prop order = "default"
 * @prop class: className
 * @prop ...restProps
 */
declare const Timeline: import("svelte").Component<TimelineProps, {}, "">;
type Timeline = ReturnType<typeof Timeline>;
export default Timeline;
