UNPKG

matrix-react-sdk

Version:
11 lines (10 loc) 421 B
/// <reference types="react" /> import { ValidatedServerConfig } from "../../../utils/AutoDiscoveryUtils"; interface IProps { title?: string; dialogTitle?: string; serverConfig: ValidatedServerConfig; onServerConfigChange?(config: ValidatedServerConfig): void; } declare const ServerPicker: ({ title, dialogTitle, serverConfig, onServerConfigChange }: IProps) => JSX.Element; export default ServerPicker;