import type { SoundAsset } from './types'; /** * Utility functions for working with sound collections * These are used by apps to organize their own sound configurations */ /** * Get all sounds from a sound collection as an array */ export declare const getAllSounds: (sounds: Record) => SoundAsset[]; /** * Get sounds by category from a sound collection */ export declare const getSoundsByCategory: (sounds: Record, category: SoundAsset["category"]) => SoundAsset[]; /** * Create a sound asset with sensible defaults */ export declare const createSound: (id: string, source: any, options: Partial>) => SoundAsset;