@chatscope/chat-ui-kit-react
Version:
React component library for creating chat interfaces
9 lines (6 loc) • 353 B
TypeScript
import type {ChatComponentPropsChildren, EmptyProps} from "../../types";
import {ReactElement} from "react";
export type InputToolboxOwnProps = EmptyProps;
export type InputToolboxProps = ChatComponentPropsChildren<InputToolboxOwnProps, "div">
export declare const InputToolbox: (props:InputToolboxProps) => ReactElement;
export default InputToolbox;