/** * Apply mixins to a constructor. * Sourced from {@link https://www.typescriptlang.org/docs/handbook/mixins.html | TypeScript Documentation }. * @internal */ export declare function applyMixins(derivedCtor: any, ...baseCtors: any[]): void;