import * as pulumi from "@pulumi/pulumi"; export declare function getPartnerAttachmentServiceKey(args: GetPartnerAttachmentServiceKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPartnerAttachmentServiceKey. */ export interface GetPartnerAttachmentServiceKeyArgs { attachmentId: string; } /** * A collection of values returned by getPartnerAttachmentServiceKey. */ export interface GetPartnerAttachmentServiceKeyResult { readonly attachmentId: string; readonly createdAt: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly state: string; readonly value: string; } export declare function getPartnerAttachmentServiceKeyOutput(args: GetPartnerAttachmentServiceKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPartnerAttachmentServiceKey. */ export interface GetPartnerAttachmentServiceKeyOutputArgs { attachmentId: pulumi.Input; }