import React, { PropsWithChildren } from 'react'; import { StreamMessage } from '../../context/ChannelStateContext'; import type { DefaultStreamChatGenerics } from '../../types/types'; export declare type WindowProps = { /** show or hide the window when a thread is active */ hideOnThread?: boolean; /** optional prop to manually trigger the opening of a thread*/ thread?: StreamMessage; }; /** * A UI component for conditionally displaying a Thread or Channel */ export declare const Window: (props: React.PropsWithChildren>) => JSX.Element; //# sourceMappingURL=Window.d.ts.map