export interface Key { name: string; key: string; shift: boolean; ctrl: boolean; alt: boolean; meta: boolean; } export declare namespace Key { const type: import("isly/dist/types/object").IslyObject; const is: (value: Key | any) => value is Key; function create(name: string, event: KeyboardEvent): Key; }