import React from "react"; import "./DockedChatView.css"; interface DockedChatViewInterface { children: React.ReactNode; showSidebarOnDesktop?: boolean | undefined; type?: string; dockedAlignment?: string; } declare const DockedChatView: ({ children, showSidebarOnDesktop, type, dockedAlignment, }: DockedChatViewInterface) => import("react/jsx-runtime").JSX.Element; export default DockedChatView;