import * as pulumi from "@pulumi/pulumi"; export declare function getSourceInsightly(args: GetSourceInsightlyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSourceInsightly. */ export interface GetSourceInsightlyArgs { sourceId: string; } /** * A collection of values returned by getSourceInsightly. */ export interface GetSourceInsightlyResult { 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 getSourceInsightlyOutput(args: GetSourceInsightlyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getSourceInsightly. */ export interface GetSourceInsightlyOutputArgs { sourceId: pulumi.Input; }