export interface IAudio { id: string; spaceId: string; type: audioType; name: string; description: string; url: string; fileName: string; mimeType: string; duration: number; createdAt?: Date | null; createdBy?: string | null; } export declare enum audioType { PROMPT = 0, MUSIC = 1 }