import React from "react"; export declare type ChatSignInScreenProps = { firstName: string; children?: React.ReactNode; imgUrl?: string; }; export declare function ChatSignInScreen({ firstName, children, imgUrl }: ChatSignInScreenProps): JSX.Element;