import { ConnectionString } from './common-core/connection_string'; /** * Parses a connection string from a string. * See {@link https://blogs.msdn.microsoft.com/iotdev/2017/05/09/understand-different-connection-strings-in-azure-iot-hub/|Understanding Connection Strings in Azure IoT Hub} for more details. * * @param source the string from which the {@link ConnectionString} object should be parsed. * * @throws {azure-iot-common.ArgumentError} if the string is missing one of the required attributes. */ export declare function parse(source: string): ConnectionString;