import { type PropsOf, type QRL } from "@builder.io/qwik"; export interface StepProps extends PropsOf<"div"> { activeClass?: string; disabledClass?: string; completeClass?: string; index?: number; onEnter$?: QRL<() => void>; onExit$?: QRL<() => void>; label: string; labelClass?: string; dividerClass?: string; } export declare const Step: import("@builder.io/qwik").Component;