import type { Schema } from '../base.ts'; import { SCHEMA_KIND } from '../base.ts'; /** * Schema for validating undefined values. */ export declare class UndefinedSchema implements Schema { readonly [SCHEMA_KIND] = "UndefinedSchema"; description?: string; readonly '~standard': { version: 1; vendor: string; validate: (value: unknown) => import("@agentuity/core").StandardSchemaV1.FailureResult | import("@agentuity/core").StandardSchemaV1.SuccessResult; types: { input: undefined; output: undefined; }; }; describe(description: string): this; optional(): import("../index.ts").OptionalSchema; nullable(): import("../index.ts").NullableSchema; parse: (this: Schema, value: unknown) => undefined; safeParse: (this: Schema, value: unknown) => import("../base.ts").SafeParseResult; } /** * Create an undefined schema. */ export declare function undefined_(): UndefinedSchema; //# sourceMappingURL=undefined.d.ts.map