import type { FeedType, XmlNode } from "./types"; export declare type ParserOptions = { allowMissingGuid?: boolean; }; export declare function unifiedParser(theFeed: XmlNode, type: FeedType, options?: ParserOptions): import("./types").FeedObject | null;