import { AbstractConstructor, Constructor } from './constructor'; import { CanDisable } from './disabled'; export interface HasTabIndex { tabIndex: number; } export type HasTabIndexCtor = Constructor & AbstractConstructor; /** Mixin to augment a directive with a `tabIndex` property. */ export declare function mixinTabIndex>(base: T, defaultTabIndex?: number): HasTabIndexCtor & T;