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