import * as pulumi from "@pulumi/pulumi";
/**
 * Data source for retrieving an SSO providers
 */
export declare function getSsoProvider(args?: GetSsoProviderArgs, opts?: pulumi.InvokeOptions): Promise<GetSsoProviderResult>;
/**
 * A collection of arguments for invoking getSsoProvider.
 */
export interface GetSsoProviderArgs {
    /**
     * Unique identifier of the SSO provider.
     */
    id?: string;
    /**
     * The name of the SSO provider.
     */
    name?: string;
}
/**
 * A collection of values returned by getSsoProvider.
 */
export interface GetSsoProviderResult {
    /**
     * Unique identifier of the SSO provider.
     */
    readonly id?: string;
    /**
     * The name of the SSO provider.
     */
    readonly name?: string;
    /**
     * The type of SSO provider.
     */
    readonly type: string;
}
/**
 * Data source for retrieving an SSO providers
 */
export declare function getSsoProviderOutput(args?: GetSsoProviderOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSsoProviderResult>;
/**
 * A collection of arguments for invoking getSsoProvider.
 */
export interface GetSsoProviderOutputArgs {
    /**
     * Unique identifier of the SSO provider.
     */
    id?: pulumi.Input<string>;
    /**
     * The name of the SSO provider.
     */
    name?: pulumi.Input<string>;
}
