@chatscope/chat-ui-kit-react
Version:
React component library for creating chat interfaces
10 lines (7 loc) • 314 B
TypeScript
import type {ReactElement} from "react";
import type {ChatComponentPropsChildren} from "../../types";
export interface MainContainerProps {
responsive?:boolean;
}
export declare const MainContainer: (props:ChatComponentPropsChildren<MainContainerProps, "div">) => ReactElement;
export default MainContainer;