import { type AdoptionGoalMatch } from '../context/LiveAgentContext'; import type { AuthedFetch } from './useSession'; interface UseAdoptionGoalsParams { enabled: boolean; bearerToken: string | null; authedFetch: AuthedFetch; } interface UseAdoptionGoalsResult { goals: AdoptionGoalMatch[]; attendGoal: (goalId: string) => void; } export declare function useAdoptionGoals({ enabled, bearerToken, authedFetch, }: UseAdoptionGoalsParams): UseAdoptionGoalsResult; export {};