import { FC, HTMLAttributes } from 'react'; type RemoteChatProps = { open: boolean; } & HTMLAttributes; export declare const LocalChat: FC; export {};