UNPKG

ze-react-component-library

Version:
12 lines (11 loc) 437 B
import React, { FC, HTMLAttributes } from "react"; interface VoiceRecorderProps { ask: (text?: string) => void; } declare type LiteralUnion<T extends U, U> = T | (U & {}); declare const defaultColor: "primary"; export declare const RecordLoading: FC<{ color?: LiteralUnion<typeof defaultColor, string>; } & HTMLAttributes<HTMLDivElement>>; declare const VoiceRecorder: React.FC<VoiceRecorderProps>; export default VoiceRecorder;