/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ /** * Canonicalizes a connector ID to the APIM "shared" form. * `"office365"` → `"shared_office365"`; `"shared_office365"` stays unchanged. */ export declare function normalizeConnectorId(connectorId: string): string; /** * Returns `true` when a connector ID refers to the SQL connector, ignoring the * optional `shared_` prefix and case (`"sql"`, `"shared_sql"`, `"SQL"` all match). */ export declare function isSqlConnector(connectorId: string): boolean; //# sourceMappingURL=ConnectorId.d.ts.map