import React, { PropsWithChildren } from 'react'; import { OneChatMessage } from '../../context/ChannelStateContext'; import type { DefaultOneChatGenerics } from '../../types'; export declare type WindowProps = { /** show or hide the window when a thread is active */ hideOnThread?: boolean; /** optional prop to force addition of class str-chat__main-panel--hideOnThread to the Window root element */ thread?: OneChatMessage; }; /** * A UI component for conditionally displaying a Thread or Channel */ export declare const Window: (props: React.PropsWithChildren>) => JSX.Element; //# sourceMappingURL=Window.d.ts.map