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;
