import { InitialValues, Step } from '../types'; export type Draft = InitialValues & { activeStep: Step; }; export declare const storeDraft: (shadowRoot: ShadowRoot) => void; export declare const getDraft: () => InitialValues; export declare const removeDraft: () => void; export declare const getDraftName: () => string;