import { IKeyCode } from './types'; export interface CharacterCode { name: string; value: string; code: IKeyCode; color: string; previewColor?: string; inverseColor?: string; inversePreviewColor?: string; keyCode?: number; shiftKey?: boolean; sprite?: string; spriteInverse?: string; } export declare const NoteBlackCustomCharacter: CharacterCode; export declare const rainbow: string[]; export declare const characterCodeColors: Array; export declare const characterCodes: Array;