import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare function getAccount(args?: GetAccountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccount. */ export interface GetAccountArgs { accountId?: string; filter?: inputs.GetAccountFilter; } /** * A collection of values returned by getAccount. */ export interface GetAccountResult { readonly accountId?: string; readonly createdOn: string; readonly filter?: outputs.GetAccountFilter; readonly id: string; readonly managedBy: outputs.GetAccountManagedBy; readonly name: string; readonly settings: outputs.GetAccountSettings; readonly type: string; } export declare function getAccountOutput(args?: GetAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccount. */ export interface GetAccountOutputArgs { accountId?: pulumi.Input; filter?: pulumi.Input; } //# sourceMappingURL=getAccount.d.ts.map