import { CanonicalItemSessionContainer } from '@pie-players/pie-players-shared'; export type SessionChangedForwardingResult = { action: "ignore"; } | { action: "forward"; changed: boolean; detail: Record; metadataOnly: boolean; session: CanonicalItemSessionContainer; signature: string; }; export declare function resolveSessionChangedForwarding(args: { currentSession: CanonicalItemSessionContainer; currentSignature: string; detail: unknown; itemId: string; }): SessionChangedForwardingResult;