import { PropsWithChildren } from 'react'; import { DefaultGenerics } from 'stream-chat'; export declare const streamAPIKey: string; declare type LocalAttachmentType = Record; declare type LocalChannelType = Record; declare type LocalCommandType = string; declare type LocalEventType = Record; declare type LocalMessageType = Record; declare type LocalReactionType = Record; declare type LocalUserType = Record; export declare type StreamChatGenerics = { attachmentType: LocalAttachmentType; channelType: LocalChannelType; commandType: LocalCommandType; eventType: LocalEventType; messageType: LocalMessageType; reactionType: LocalReactionType; userType: LocalUserType; }; export declare type ConnectedUserProps = PropsWithChildren<{ token: string; userId: string; }>; export declare const ConnectedUser: ({ children, token, userId, }: ConnectedUserProps) => JSX.Element; export {}; //# sourceMappingURL=utils.d.ts.map