export interface CourseState {
    currentCourse?: string;
    currentModule?: string;
    currentLesson?: string;
    currentStep: number;
    currentStepId?: string;
    status?: number;
    userEmail?: string;
}
export declare function getLocalState(): Promise<CourseState>;
export declare function saveLocalState(state: CourseState): Promise<void>;
export declare function clearLocalState(): Promise<void>;
//# sourceMappingURL=state.d.ts.map