export declare const PrivateConnectionStatus: {
    readonly Active: "ACTIVE";
    readonly CreateInProgress: "CREATE_IN_PROGRESS";
    readonly CreateFailed: "CREATE_FAILED";
    readonly DeleteInProgress: "DELETE_IN_PROGRESS";
    readonly DeleteFailed: "DELETE_FAILED";
};
/**
 * The status of the Private Connection.
 */
export type PrivateConnectionStatus = (typeof PrivateConnectionStatus)[keyof typeof PrivateConnectionStatus];
export declare const ServiceType: {
    readonly Dynatrace: "dynatrace";
    readonly Mcpserver: "mcpserver";
    readonly Mcpserversplunk: "mcpserversplunk";
    readonly Mcpservernewrelic: "mcpservernewrelic";
    readonly Gitlab: "gitlab";
    readonly Servicenow: "servicenow";
    readonly Pagerduty: "pagerduty";
    readonly Azureidentity: "azureidentity";
    readonly Mcpserversigv4: "mcpserversigv4";
    readonly Mcpservergrafana: "mcpservergrafana";
};
/**
 * The type of service being registered
 */
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
