@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
12 lines (11 loc) • 426 B
TypeScript
import React from 'react';
import type { StringSet } from '../localization/StringSet.type';
type Props = React.PropsWithChildren<{
stringSet: StringSet;
}>;
export type LocalizationContextType = {
STRINGS: StringSet;
};
export declare const LocalizationContext: React.Context<LocalizationContextType | null>;
export declare const LocalizationProvider: ({ children, stringSet }: Props) => React.JSX.Element;
export {};