import type { GuideController, GuideOptions } from '../types'; export interface GuideContextValue { controller: GuideController; options: GuideOptions; } export declare const GuideContext: import("react").Context;