import { WithChildren } from "@fremtind/jkl-core"; import React from "react"; import { FollowupState } from "../types"; export declare const useFollowUpContext: () => FollowupState | undefined; interface FollowupContextProviderProps extends WithChildren { state: FollowupState; } export declare const FollowUpProvider: React.FC; export {};