UNPKG

@memori.ai/memori-react

Version:

[![npm version](https://img.shields.io/github/package-json/v/memori-ai/memori-react)](https://www.npmjs.com/package/@memori.ai/memori-react) ![Tests](https://github.com/memori-ai/memori-react/workflows/CI/badge.svg?branch=main) ![TypeScript Support](https

11 lines (10 loc) 469 B
/// <reference types="react" /> import { Props as ChatInputProps } from '../ChatInputs/ChatInputs'; export interface Props { listening?: ChatInputProps['listening']; stopAudio: ChatInputProps['stopAudio']; startListening: ChatInputProps['startListening']; stopListening: ChatInputProps['stopListening']; } declare const MicrophoneButton: ({ listening, stopAudio, startListening, stopListening, }: Props) => JSX.Element; export default MicrophoneButton;