/** * 麦克风条 — 移动端键盘的主操作:按住说话的大胶囊按键。 * @startingPoint section="Components" subtitle="按住说话 · 四种状态" viewport="700x300" */ export interface MicBarProps { /** idle 按住说话 / recording 录音中 / disabled 未登录 / quota 超额 @default 'idle' */ state?: 'idle' | 'recording' | 'disabled' | 'quota'; /** 覆盖默认文案 */ label?: string; onPointerDown?: (e: any) => void; onPointerUp?: (e: any) => void; } export declare function MicBar(props: MicBarProps): any;