import { Colors } from "../types/parametrization"; import { Role } from "../types/messages"; interface AudioPlayerProps { url: string; transcription?: string; role: Role; colors?: Colors; } export declare const AudioPlayer: ({ url, transcription, role }: AudioPlayerProps) => import("react/jsx-runtime").JSX.Element; export {};