import type { ParsedXML } from "./parsed_xml.js"; type OAIPMHBaseResponse = { "OAI-PMH": [ { i: number; val: ParsedXML; attr: { "@_xmlns": string; "@_xmlns:xsi": string; "@_xsi:schemaLocation": string; }; } ]; }; declare function isOAIPMHBaseResponse(value: ParsedXML): value is OAIPMHBaseResponse; export { isOAIPMHBaseResponse };