import { type StepIndicatorProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [StepIndicatorProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1515)
 * ## Props
 * @prop steps = ["Step 1", "Step 2", "Step 3", "Step 4", "Step 5"]
 * @prop currentStep = 1
 * @prop size = "md"
 * @prop color = "primary"
 * @prop glow = false
 * @prop hideLabel = false
 * @prop completedCustom = ""
 * @prop currentCustom = ""
 * @prop class: className
 * @prop classes
 * @prop ...restProps
 */
declare const StepIndicator: import("svelte").Component<StepIndicatorProps, {}, "">;
type StepIndicator = ReturnType<typeof StepIndicator>;
export default StepIndicator;
