import { PropertyType } from "@medusajs/types"; import { ComputedProperty } from "./computed"; declare const IsNullableModifier: unique symbol; /** * Nullable modifier marks a schema node as nullable */ export declare class NullableModifier> implements PropertyType { #private; [IsNullableModifier]: true; static isNullableModifier(obj: any): obj is NullableModifier; /** * A type-only property to infer the JavScript data-type * of the schema property */ $dataType: T | null; constructor(schema: Schema); /** * This method indicated that the property is a computed property. */ computed(): ComputedProperty; /** * Returns the serialized metadata */ parse(fieldName: string): import("@medusajs/types").PropertyMetadata; } export {}; //# sourceMappingURL=nullable.d.ts.map