import { ElementRef } from '@angular/core'; export interface HasElementRef { _elementRef: ElementRef; } export type Constructor = new (...args: any[]) => T; export declare function mixinColor>(base: T, defaultColor?: string): T;