import React from "react"; import { AllState } from "repond"; type Props = { name: keyof AllState["speechBubbles"] & string; }; export declare function SpeechBubble({ name }: Props): React.JSX.Element; export {};