import { AbstractConstructor, Constructor } from "./constructor"; import { HasElementRef } from "./has-element-ref"; export interface CanClassName { readonly className: string | undefined; } declare type CanClassNameCtor = Constructor & AbstractConstructor; export declare function mixinClassName>(core: T, className: string): CanClassNameCtor & T; export {};