import * as pulumi from "@pulumi/pulumi";
/**
 * Get LDAP Source Property mappings
 */
export declare function getPropertyMappingSourceLdap(args?: GetPropertyMappingSourceLdapArgs, opts?: pulumi.InvokeOptions): Promise<GetPropertyMappingSourceLdapResult>;
/**
 * A collection of arguments for invoking getPropertyMappingSourceLdap.
 */
export interface GetPropertyMappingSourceLdapArgs {
    /**
     * List of ids when `managedList` is set. Generated.
     */
    ids?: string[];
    managed?: string;
    /**
     * Retrieve multiple property mappings
     */
    managedLists?: string[];
    name?: string;
}
/**
 * A collection of values returned by getPropertyMappingSourceLdap.
 */
export interface GetPropertyMappingSourceLdapResult {
    /**
     * Generated.
     */
    readonly expression: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * List of ids when `managedList` is set. Generated.
     */
    readonly ids: string[];
    readonly managed?: string;
    /**
     * Retrieve multiple property mappings
     */
    readonly managedLists?: string[];
    readonly name?: string;
}
/**
 * Get LDAP Source Property mappings
 */
export declare function getPropertyMappingSourceLdapOutput(args?: GetPropertyMappingSourceLdapOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPropertyMappingSourceLdapResult>;
/**
 * A collection of arguments for invoking getPropertyMappingSourceLdap.
 */
export interface GetPropertyMappingSourceLdapOutputArgs {
    /**
     * List of ids when `managedList` is set. Generated.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    managed?: pulumi.Input<string>;
    /**
     * Retrieve multiple property mappings
     */
    managedLists?: pulumi.Input<pulumi.Input<string>[]>;
    name?: pulumi.Input<string>;
}
