export declare namespace SoundDict { type DictKey = number | string | symbol; type Dict = { [index: number | string | symbol]: V; }; export function get(dict: Dict, index: K): V | undefined; export {}; }