import type { TimelineStepperProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [TimelineStepperProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1751) * ## Props * @prop steps = [] * @prop class: className * @prop classes * @prop contentClass * @prop current = $bindable(1) * @prop clickable = true * @prop showCheckmarkForCompleted = true * @prop onStepClick * @prop ...restProps */ declare const TimelineStepper: import("svelte").Component; type TimelineStepper = ReturnType; export default TimelineStepper;