export * as zod from "zod"; import * as zod from "zod/v4"; import { $strip } from "zod/v4/core"; export declare namespace zodHelper { type ExtraKeys = Exclude; type ThrowIfExtraKeys = ExtraKeys extends never ? unknown : { [key: string]: never; }; export function fromType(): ; } & ThrowIfExtraKeys>(schema: Schema) => zod.ZodObject; export function is(type: zod.ZodType, value: unknown): value is T; export {}; }