import { PropertyValueType } from './types';
import { NamedDescriptor } from '../named-descriptor';
/**
 * Return a boolean represents whether the property value is an object or a function
 * @param propertyValue Property value
 * @param descriptor Property decsriptor
 */
export declare const isObjectOrFunction: (propertyValue: PropertyValueType, descriptor?: NamedDescriptor<import("mic-global").PrimaryTypes> | undefined) => boolean;
