import type { JSONAPIDataDocument, JSONAPIDocument, JSONAPIErrorDocument, JSONAPIPrimaryDocumentData, JSONObject, JSONRef, JSONValue } from './types'; export declare const isJSONObject: (value: JSONValue) => value is JSONObject; export declare const isJSONValueArray: (value: JSONValue | JSONValue[] | null) => value is JSONValue[]; export declare const isJSONRef: (arg: unknown) => arg is JSONRef; export declare const isJSONAPIDataDocument: (doc: JSONAPIDocument) => doc is JSONAPIDataDocument>>>; export declare const isJSONAPIErrorDocument: (doc: JSONAPIDocument) => doc is JSONAPIErrorDocument; //# sourceMappingURL=typeGuards.d.ts.map