import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getList(args: GetListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getList. */ export interface GetListArgs { accountId: string; listId: string; search?: string; } /** * A collection of values returned by getList. */ export interface GetListResult { readonly accountId: string; readonly createdOn: string; readonly description: string; readonly id: string; readonly items: outputs.GetListItem[]; readonly kind: string; readonly listId: string; readonly modifiedOn: string; readonly name: string; readonly numItems: number; readonly numReferencingFilters: number; readonly search?: string; } export declare function getListOutput(args: GetListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getList. */ export interface GetListOutputArgs { accountId: pulumi.Input; listId: pulumi.Input; search?: pulumi.Input; } //# sourceMappingURL=getList.d.ts.map