import { default as React } from 'react'; import { WithChildren } from '../../../core/types.js'; import { FollowupState } from '../types.js'; export declare const useFollowUpContext: () => FollowupState | undefined; interface FollowupContextProviderProps extends WithChildren { state: FollowupState; } export declare const FollowUpProvider: React.FC; export {};