BUPKIS
    Preparing search index...

    Variable PropertyTestConfigVariantSchemaConst

    PropertyTestConfigVariantSchema: ZodUnion<
        readonly [
            ZodObject<
                {
                    generators: ZodUnion<readonly [ZodAny, ZodArray<ZodAny>]>;
                    runSize: ZodOptional<
                        ZodEnum<{ large: "large"; medium: "medium"; small: "small" }>,
                    >;
                },
                $strip,
            >,
            ZodObject<
                {
                    async: ZodLiteral<true>;
                    generators: ZodUnion<readonly [ZodAny, ZodArray<ZodAny>]>;
                    runSize: ZodOptional<
                        ZodEnum<{ large: "large"; medium: "medium"; small: "small" }>,
                    >;
                },
                $strip,
            >,
            ZodObject<
                {
                    property: ZodFunction<
                        ZodTuple<readonly [], null>,
                        ZodCustom<
                            IProperty<any>
                            | IPropertyWithHooks<any>,
                            IProperty<any> | IPropertyWithHooks<any>,
                        >,
                    >;
                    runSize: ZodOptional<
                        ZodEnum<{ large: "large"; medium: "medium"; small: "small" }>,
                    >;
                },
                $strip,
            >,
            ZodObject<
                {
                    asyncProperty: ZodFunction<
                        ZodTuple<readonly [], null>,
                        ZodCustom<
                            IAsyncProperty<any>
                            | IAsyncPropertyWithHooks<any>,
                            IAsyncProperty<any> | IAsyncPropertyWithHooks<any>,
                        >,
                    >;
                    runSize: ZodOptional<
                        ZodEnum<{ large: "large"; medium: "medium"; small: "small" }>,
                    >;
                },
                $strip,
            >,
        ],
    > = ...