import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; declare const _default: __VLS_WithTemplateSlots, { active: boolean; completed: boolean; error: boolean; nested: boolean; step: undefined; disabled: boolean; loading: boolean; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { active: boolean; completed: boolean; error: boolean; nested: boolean; step: undefined; disabled: boolean; loading: boolean; }>>> & Readonly<{}>, { error: boolean; disabled: boolean; loading: boolean; step: string; active: boolean; nested: boolean; completed: boolean; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; export declare interface StepProps { /** * Indicates if the step is currently active. * This takes precedence over `completed` and `error` */ active?: boolean; /** * Indicates if the step is completed */ completed?: boolean; /** * Indicates if the step has an error * This takes precedence over `completed` */ error?: boolean; /** * The text to display in the step. */ text: string; /** * Indicates if the step is nested */ nested?: boolean; /** * The text to display in the step circle */ step?: string; /** * Indicates if the step is disabled */ disabled?: boolean; /** * Indicates if the step is in a loading state */ loading?: boolean; } export { }