import type { PropsWithChildren } from 'react'; import type { Channel } from 'stream-chat'; export type ChannelDetailContextValue = { channel: Channel; }; export type ChannelDetailProviderProps = PropsWithChildren<{ channel: Channel; }>; export declare const ChannelDetailProvider: ({ channel, children, }: ChannelDetailProviderProps) => import("react/jsx-runtime").JSX.Element; export declare const useChannelDetailContext: () => ChannelDetailContextValue; //# sourceMappingURL=ChannelDetailContext.d.ts.map