import type { ExtractPropTypes } from 'vue'; import type InlineStepper from './inline-stepper.vue'; interface InlineStepperItem { title?: string; key?: any; tip?: string; [key: string]: any; } export declare const inlineStepperProps: { readonly current: import("ll-plus/es/utils").EpPropFinalized; readonly items: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => any[], boolean>; readonly mode: import("ll-plus/es/utils").EpPropFinalized; }; export type InlineStepperProps = ExtractPropTypes; export type InlineStepperInstance = InstanceType; export {};