export interface CaseContextState { /** * The case context */ caseContext: Record; /** * The case id */ caseId: string; /** * The case number */ caseNumber: string; } /** * Get the initial state of case context * @returns Case Context State */ export declare const getCaseContextInitialState: () => CaseContextState; /** * Return the case context metadata to be sent in the analytics * @param state - The case context state * @returns Case context metadata */ export declare const getCaseContextAnalyticsMetadata: (state: CaseContextState | undefined) => { caseContext: Record; caseId: string | undefined; caseNumber: string | undefined; };