import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::Lambda::NetworkConnector
 */
export declare function getNetworkConnector(args: GetNetworkConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkConnectorResult>;
export interface GetNetworkConnectorArgs {
    arn: string;
}
export interface GetNetworkConnectorResult {
    readonly arn?: string;
    readonly configuration?: outputs.lambda.NetworkConnectorConfig;
    readonly operatorRole?: string;
    readonly state?: enums.lambda.NetworkConnectorState;
    /**
     * A list of tags to apply to the network connector. Use tags to categorize network connectors for cost allocation, access control, or operational management.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::Lambda::NetworkConnector
 */
export declare function getNetworkConnectorOutput(args: GetNetworkConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkConnectorResult>;
export interface GetNetworkConnectorOutputArgs {
    arn: pulumi.Input<string>;
}
