import { LitElement } from 'lit'; type Constructor = new (...args: any[]) => T; /** * This mixin handles focusing of elements, and adds the `gds-focus` and `gds-blur` events. */ export declare const Focusable: >(superClass: T) => Constructor & T; export {};