import * as pulumi from "@pulumi/pulumi"; export declare function getDestinationGoogleSheets(args: GetDestinationGoogleSheetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDestinationGoogleSheets. */ export interface GetDestinationGoogleSheetsArgs { destinationId: string; } /** * A collection of values returned by getDestinationGoogleSheets. */ export interface GetDestinationGoogleSheetsResult { readonly configuration: string; readonly destinationId: string; readonly destinationType: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly workspaceId: string; } export declare function getDestinationGoogleSheetsOutput(args: GetDestinationGoogleSheetsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getDestinationGoogleSheets. */ export interface GetDestinationGoogleSheetsOutputArgs { destinationId: pulumi.Input; }