@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
17 lines (16 loc) • 674 B
TypeScript
import React from 'react';
import './index.scss';
import './__experimental__typography.scss';
import type { SendbirdProviderProps } from './types';
export type { SendbirdProviderProps } from './types';
export declare const SendbirdProvider: (props: SendbirdProviderProps) => React.JSX.Element;
type ContextAwareComponentType = {
(props: any): JSX.Element;
displayName: string;
};
type PropsType = Record<string, any>;
/**
* @deprecated This function is deprecated. Use `useSendbird` instead.
* */
export declare const withSendBird: (OriginalComponent: any, mapStoreToProps: (props: any) => PropsType) => ContextAwareComponentType;
export default SendbirdProvider;