/**
 * Subset of Connection String fields which this SDK can parse. Lower-typecased to
 * allow for case-insensitivity across field names.
 * @internal
 */
export type ConnectionString = {
    [key in ConnectionStringKey]?: string;
};
/**
 * ConnectionString keys.
 * @internal
 */
export type ConnectionStringKey = "authorization" | "aadaudience" | "instrumentationkey" | "ingestionendpoint" | "liveendpoint" | "location" | "endpointsuffix";
//# sourceMappingURL=Constants.d.ts.map