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