import React from 'react'; import { ReactElement } from 'react'; interface SimplePeerReactJoinRoomButtonProps { children: ReactElement; room: string; join: () => void; className: string; } export declare class JoinRoomButton extends React.Component, HTMLButtonElement>, {}> { readonly state: {}; componentDidMount(): void; render(): JSX.Element; } export {};