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