UNPKG

matrix-react-sdk

Version:
12 lines (11 loc) 376 B
import React from "react"; import { ValidatedServerConfig } from "../../../utils/ValidatedServerConfig"; interface IProps { title?: string; dialogTitle?: string; serverConfig: ValidatedServerConfig; disabled?: boolean; onServerConfigChange?(config: ValidatedServerConfig): void; } declare const ServerPicker: React.FC<IProps>; export default ServerPicker;