import { JsonObject, JsonValue } from "../types";
export declare const copyValue: <T>(value: T) => T;
export declare const toString: (value: JsonValue) => string;
export declare const getStringAfterLast: (string: string, target: string) => string;
export declare const objectMatches: (json: JsonObject, matcher: JsonObject) => boolean;
