import { AddressOpts, QueryProtocols, ServerInfo } from './types';
/**
 * Open a TCP socket to query Minecraft server status.
 *
 * @param address An FQDN or IP address.
 * @param port A TCP port number.
 * @param timeout Connection timeout in milliseconds.
 * @returns Server information.
 */
export declare function fetchServerInfo(options: AddressOpts): Promise<ServerInfo>;
export { QueryProtocols, ServerInfo };
