declare module 'react-native-hubspot-chat' { type ChatProperty = { name: string; value: string }; const HubspotChat: { init(): Promise; open(tag: string): Promise; identify(identityToken: string, email?: string): Promise; setProperties(props: ChatProperty[] | Record): Promise; endSession(): Promise; }; export default HubspotChat; }