import React from 'react'; import type { SendbirdGroupChannel, SendbirdGroupChannelCreateParams, SendbirdMember, SendbirdUser } from '@gathertown/uikit-utils'; type OnCreateChannel = (channel: SendbirdGroupChannel) => void; type OnBeforeCreateChannel = (channelParams: SendbirdGroupChannelCreateParams, users: SendbirdUser[] | SendbirdMember[]) => SendbirdGroupChannelCreateParams | Promise; type ShowOptions = { hideMessageButton?: boolean; }; export type UserProfileContextType = { show(user: SendbirdUser | SendbirdMember, options?: ShowOptions): void; hide(): void; }; type Props = React.PropsWithChildren<{ onCreateChannel?: OnCreateChannel; onBeforeCreateChannel?: OnBeforeCreateChannel; statusBarTranslucent?: boolean; }>; export declare const UserProfileContext: React.Context; export declare const UserProfileProvider: ({ children, onCreateChannel, onBeforeCreateChannel, statusBarTranslucent, }: Props) => JSX.Element; export {};