import { Ref } from 'vue'; import { PrimitiveProps } from '../Primitive'; export declare const injectStepperItemContext: (fallback?: T | undefined) => T extends null ? StepperItemContext | null : StepperItemContext, provideStepperItemContext: (contextValue: StepperItemContext) => StepperItemContext; export type StepperState = 'completed' | 'active' | 'inactive'; export interface StepperItemContext { titleId: string; descriptionId: string; step: Ref; state: Ref; disabled: Ref; isFocusable: Ref; } export interface StepperItemProps extends PrimitiveProps { /** A unique value that associates the stepper item with an index */ step: number; /** When `true`, prevents the user from interacting with the step. */ disabled?: boolean; /** Shows whether the step is completed. */ completed?: boolean; } declare const _default: __VLS_WithTemplateSlots, { completed: boolean; disabled: boolean; }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly, { completed: boolean; disabled: boolean; }>>>, { disabled: boolean; completed: boolean; }, {}>, Readonly<{ default: (props: { /** The current state of the stepper item */ state: StepperState; }) => any; }> & { default: (props: { /** The current state of the stepper item */ state: StepperState; }) => any; }>; export default _default; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_PrettifyLocal : P[K]; }; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};