export interface RecordingIconProps { /** * @description 录音图标的CSS类名,用于自定义样式 * @descriptionEn CSS class name for the recording icon for custom styling */ className?: string; } export default function RecordingIcon({ className }: RecordingIconProps): import("react/jsx-runtime").JSX.Element;