Variable PropertyDescriptionSchemaConst

PropertyDescriptionSchema: Zod.z.ZodObject<
    {
        defaultValue: Zod.z.ZodType<
            Required<any>,
            Zod.z.ZodTypeDef,
            Required<any>,
        >;
        description: Zod.z.ZodOptional<Zod.z.ZodString>;
        label: Zod.z.ZodOptional<Zod.z.ZodString>;
        name: Zod.z.ZodString;
        type: Zod.z.ZodNativeEnum<typeof PropertyDescriptionTypeEnum>;
    },
    "strip",
    Zod.z.ZodTypeAny,
    {
        defaultValue: Required<any>;
        description?: string;
        label?: string;
        name: string;
        type: PropertyDescriptionTypeEnum;
    },
    {
        defaultValue: Required<any>;
        description?: string;
        label?: string;
        name: string;
        type: PropertyDescriptionTypeEnum;
    },
> = ...