import { AllowedComponentProps, VNodeProps } from '../common' declare interface VoiceInputEmits { (e: 'send', data: any): void } declare interface _VoiceInput { new(): { $props: AllowedComponentProps & VNodeProps $emit: VoiceInputEmits } } export declare const VoiceInput: _VoiceInput export default VoiceInput export type { VoiceInputEmits }