import { z } from "zod"; import { BasePropertySchema, TPropertyValue } from "./common"; import { PropertyType } from "./property-type"; export declare const DateTimeProperty: z.ZodObject<{ type: z.ZodLiteral; required: z.ZodBoolean; defaultValue: z.ZodOptional; displayName: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export type DateTimeProperty = BasePropertySchema & TPropertyValue; //# sourceMappingURL=date-time-property.d.ts.map