import { Constructor, AbstractConstructor } from './constructor'; import { CanDisable } from './disabled'; export interface HasTabIndex { /** Tabindex of the component. */ tabIndex: number; /** Tabindex to which to fall back to if no value is set. */ defaultTabIndex: number; } type HasTabIndexConstructor = Constructor & AbstractConstructor; /** Mixin to augment a directive with a `tabIndex` property. */ export declare function mixinTabIndex>(base: T, defaultTabIndex?: number): HasTabIndexConstructor & T; export {};