import type { LitElement } from 'lit';
import { Focusable } from './inderface';
declare type Constructor<T> = new (...args: any[]) => T;
export declare const focusable: <T extends Constructor<LitElement>>(superClass: T) => Constructor<Focusable & LitElement> & T;
export {};
