import { Ref } from 'vue'; import { Call, ContentRating } from '../types/call'; import { CDP_EVENT_TYPE } from '../constants/cdp.const'; export default function usePresentationHistory(): { updatePresentationHistory: (p: { eventName: (typeof CDP_EVENT_TYPE)[keyof typeof CDP_EVENT_TYPE]; payload: any; call: Ref; canvasName?: string; }) => void; setMetadataItem: (call: Ref, id: string, rating: ContentRating) => void; };