/**
 * .what = checks if input is a DomainObject (class or instance)
 * .why = supports cross version compatibility evaluation
 * .note = uses marker symbol for cycle-free detection
 * .note = static property lookup follows prototype chain automatically in JS
 */
export declare const isOfDomainObject: (input: unknown) => boolean;
