/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { Api, Connection } from '../types/ApiTypes.js'; /** * Extracts the gateway object id from a connection by locating the connector's * `gatewaySetting`-typed connection parameter and reading `gatewayObjectId` from * the matching value on the connection. * * Mirrors the PA Client implementation (`tryGetGatewayObjectId`). Returns `undefined` * when the connector has no gateway parameter, when the connection has not been * provisioned with a gateway, or when either side is missing parameter definitions. */ export declare function tryGetGatewayObjectId(connection: Connection, connector: Api): string | undefined; //# sourceMappingURL=gatewayUtils.d.ts.map