import type { MF2, ParsedMF2 } from './mf2.js'; /** * Validates whether input is MF2 or not. */ export declare function isMF2(input: unknown): input is MF2; /** * Validates whether input is MF2 JSON or not. * * **NOTE**: I am not sure whether a MF2 JSON must include a `type` property. * If not provided, I think MF2 JSON should be treated as having type=["entry"]. */ export declare function isParsedMF2(input: unknown): input is ParsedMF2; //# sourceMappingURL=type-guards.d.ts.map