swap-chat-react
Version:
swap-chat-react-components
9 lines (8 loc) • 400 B
TypeScript
import { PropsWithChildren } from 'react';
import { ComponentContextValue } from '../../context/ComponentContext';
export declare type ChannelProps = {
Message?: ComponentContextValue['Message'];
Input?: ComponentContextValue['Input'];
ThreadHeader?: ComponentContextValue['ThreadHeader'];
};
export declare const Channel: (props: PropsWithChildren<ChannelProps>) => JSX.Element;