import { ExtractPropTypes, PropType } from 'vue'; export type stepsKeys = { title: String; description: String; message: String; }; export declare const stepsProps: { readonly data: { readonly type: ArrayConstructor; readonly default: readonly []; }; readonly active: { readonly type: NumberConstructor; readonly default: undefined; }; readonly size: { readonly type: StringConstructor; readonly default: "default"; }; readonly layout: { readonly type: StringConstructor; readonly default: "horizontal"; }; readonly completed: { readonly type: StringConstructor; readonly default: "Completed"; }; readonly reverse: { readonly type: BooleanConstructor; readonly default: false; }; readonly stepsKeys: { readonly type: PropType; readonly default: { readonly title: "title"; readonly description: "description"; readonly message: "message"; }; }; }; export type StepsProps = ExtractPropTypes;