import React from 'react'; import type { GuideController, GuideOptions } from '../types'; interface GuideProviderProps { guide: GuideController; options: GuideOptions; children: React.ReactNode; } /** * GuideProvider wraps your app and provides guide context. * It also injects the base CSS styles and mounts the Guide component. */ export declare const GuideProvider: React.FC; export {};