import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
 * Definition of AWS::DataZone::ProjectMembership Resource Type
 */
export declare function getProjectMembership(args: GetProjectMembershipArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectMembershipResult>;
export interface GetProjectMembershipArgs {
    /**
     * The ID of the Amazon DataZone domain in which project membership is created.
     */
    domainIdentifier: string;
    memberIdentifier: string;
    memberIdentifierType: enums.datazone.ProjectMembershipMemberIdentifierType;
    /**
     * The ID of the project for which this project membership was created.
     */
    projectIdentifier: string;
}
export interface GetProjectMembershipResult {
    readonly memberIdentifier?: string;
    readonly memberIdentifierType?: enums.datazone.ProjectMembershipMemberIdentifierType;
}
/**
 * Definition of AWS::DataZone::ProjectMembership Resource Type
 */
export declare function getProjectMembershipOutput(args: GetProjectMembershipOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectMembershipResult>;
export interface GetProjectMembershipOutputArgs {
    /**
     * The ID of the Amazon DataZone domain in which project membership is created.
     */
    domainIdentifier: pulumi.Input<string>;
    memberIdentifier: pulumi.Input<string>;
    memberIdentifierType: pulumi.Input<enums.datazone.ProjectMembershipMemberIdentifierType>;
    /**
     * The ID of the project for which this project membership was created.
     */
    projectIdentifier: pulumi.Input<string>;
}
