import { type MutableRefObject, type SetStateAction, type Dispatch } from 'react'; export interface MicroguideContextType { currentStep: number; totalSteps: number; isNext: boolean; onClose: (currentStep: number, finished: boolean) => void; setHasTitle: Dispatch>; setHasContent: Dispatch>; closeButtonRef: MutableRefObject; closedOnKeydown: MutableRefObject; } export declare const MicroguideContext: import("react").Context;