type BgmAsset = { name: string; title: string; url: string; suno_url: string; date: string; duration: string; account: string; original_license: string; prompt: string; model: string; }; export type BgmAssets = { license: string; bgms: BgmAsset[]; }; export declare const bgmAssets: BgmAssets; export {};