import type { ZodType } from "zod"; export declare function safeParseWithSchema(schema: ZodType, value: unknown): T | null; export declare function safeParseJsonWithSchema(schema: ZodType, raw: string): T | null;