import { CombinedStandardProps, SchemaPrimitive } from "../core/types.mjs"; import { BaseSchema } from "../core/base.mjs"; //#region src/schemas/boolean.d.ts declare class BooleanSchemaType extends BaseSchema { readonly type: SchemaPrimitive; constructor(); primitive(): SchemaPrimitive; get ["~standard"](): CombinedStandardProps; } //#endregion export { BooleanSchemaType }; //# sourceMappingURL=boolean.d.mts.map