import type { DomainObject } from '../instantiation/DomainObject';
/**
 * returns the metadata keys defined on the class of the domain object
 */
export declare const getMetadataKeys: (obj: DomainObject<any>, options?: {
    nameOfFunctionNeededFor?: string;
}) => string[];
