import { z } from "zod"; export declare const BasePropertyType: z.ZodEnum<{ array: "array"; boolean: "boolean"; integer: "integer"; number: "number"; object: "object"; string: "string"; }>; export declare const BaseColumnProperty: z.ZodObject<{ title: z.ZodOptional; description: z.ZodOptional; rdfType: z.ZodOptional; default: z.ZodOptional; }, z.core.$strip>; export declare const BaseColumn: z.ZodObject<{ name: z.ZodString; type: z.ZodString; required: z.ZodOptional; nullable: z.ZodOptional; property: z.ZodObject<{ title: z.ZodOptional; description: z.ZodOptional; rdfType: z.ZodOptional; default: z.ZodOptional; }, z.core.$strip>; }, z.core.$strip>; export type BasePropertyType = z.infer; export type BaseColumnProperty = z.infer; export type BaseColumn = z.infer;