import * as pulumi from "@pulumi/pulumi"; export declare function getSourceMicrosoftSharepoint(args: GetSourceMicrosoftSharepointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSourceMicrosoftSharepoint. */ export interface GetSourceMicrosoftSharepointArgs { sourceId: string; } /** * A collection of values returned by getSourceMicrosoftSharepoint. */ export interface GetSourceMicrosoftSharepointResult { readonly configuration: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly sourceId: string; readonly sourceType: string; readonly workspaceId: string; } export declare function getSourceMicrosoftSharepointOutput(args: GetSourceMicrosoftSharepointOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getSourceMicrosoftSharepoint. */ export interface GetSourceMicrosoftSharepointOutputArgs { sourceId: pulumi.Input; }