import { Expressionable, ResourceDefinition } from 'arm-templator'; export interface PrivateEndpointConnectionProperties { privateEndpoint?: Expressionable; privateLinkServiceConnectionState?: Expressionable; } export interface PrivateEndpointProperty { id?: Expressionable; } export interface PrivateLinkServiceConnectionStateProperty { description: Expressionable; status: Expressionable; } export declare namespace servers { namespace privateEndpointConnections { type PrivateEndpointConnectionsResource = ResourceDefinition; function create(name: [Expressionable, Expressionable], properties: PrivateEndpointConnectionProperties): PrivateEndpointConnectionsResource; } }