import { Constructor } from '@open-wc/dedupe-mixin'; import { DisabledHost } from './DisabledMixinTypes'; import { LitElement } from '../index.js'; export declare class DisabledWithTabIndexHost { tabIndex: number; /** * Makes request to make the element disabled and set the tabindex */ public makeRequestToBeDisabled(): void; /** * Retract request to make the element disabled and restore disabled and tabindex to previous */ public retractRequestToBeDisabled(): void; private __internalSetTabIndex(value: boolean): void; firstUpdated(changedProperties: import('lit-element').PropertyValues): void; } export declare function DisabledWithTabIndexMixinImplementation>( superclass: T, ): T & Constructor & Pick & Constructor & Pick & Pick; export type DisabledWithTabIndexMixin = typeof DisabledWithTabIndexMixinImplementation;