/** * Marks a field as accepting `null` without running its rules. * @param target - The class prototype. * @param propertyKey - The field to mark nullable. */ export declare const markNullable: (target: object, propertyKey: PropertyKey) => void;