/** * Shared helper for reading the thumbnail/poster/image field from a playlist * item. Priority order: image → poster → thumbnail. * * Accepts `unknown` so it can be called from typed and untyped contexts alike * (e.g. event payloads arriving as `unknown` before narrowing). */ export declare function readItemImage(item: unknown): string | undefined;