export type JsonSafeParse = { success: boolean; value: unknown; }; export declare function jsonSafeParse(value: unknown): JsonSafeParse;