import { Step } from './Step'; import { type StepperProps } from './Stepper.types'; declare function Base({ currentStepIndex, labelPosition, children, className, 'aria-label': ariaLabel, ...rest }: StepperProps): import("react/jsx-runtime").JSX.Element; /** * Stepper displays a wizard-style flow's overall steps and the user's current * position within it. Steps are derived from `Stepper.Step` children, and each * step's status (`done` / `current` / `upcoming`) is derived from * `currentStepIndex`. * * @example * ```tsx * * 申請内容の入力 * goto(1)}>内容の確認 * 送信 * * ``` */ export declare const Stepper: typeof Base & { /** * A single step. Use one `Stepper.Step` per step in the flow. Provide * `onClick` or `href` to make the step interactive. */ Step: typeof Step; }; export {};