import { z } from 'zod';
import type { JsonSchemaObject } from '../types';
export declare const parseNull: (_jsonSchema: JsonSchemaObject & {
    type: "null";
}) => z.ZodNull;
