import { InjectionKey, Ref } from "vue";
import { WizardProps } from "../wizard.props";
export interface WizardContext {
    wizardPageList: Ref<string[]>;
    wizardProps: WizardProps;
    updateCurrentPageId: (id: string) => void;
    [key: string]: any;
}
export declare const WizardContextKey: InjectionKey<WizardContext>;
export declare const WizardPageKey: InjectionKey<any>;
