import { LitElement } from 'lit'; import { Constructable } from './types'; export interface SDSEventDispatcherMixinInterface { dispatchSheriffEvent(type: string, detail?: TDetail, cancelable?: boolean): boolean; dispatchKeyboardEvent(type: string, originalEvent: KeyboardEvent): boolean; } export declare function SDSEventDispatcherMixin>(superClass: T): Constructable & T; //# sourceMappingURL=sds-event-dispatcher-mixin.d.ts.map