/** * Check if a constructor is mixed from a specific constructor. * @param {function} ctor - The constructor to check. * @param {function|string} superCtor - The constructor to check if the `ctor` is mixed from. Can be the name of the constructor. * @returns {boolean} - True if `ctor` is mixed from `superCtor`, otherwise false. */ export function isMixinedFrom(ctor: Function, superCtor: Function | string): boolean; export default isMixinedFrom;