import type { IKeyboard, IKeyUpEvent } from '../../../abstraction'; import { EventBase } from '../../../dom'; export declare class KeyUpEvent extends EventBase implements IKeyUpEvent { static readonly TYPE: string; private _code; private _target?; constructor(data: IKeyboard, code: string, target?: EventTarget | null); get code(): string; get target(): EventTarget | null | undefined; }