import * as pulumi from "@pulumi/pulumi"; export declare function getCatalogEntity(args: GetCatalogEntityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCatalogEntity. */ export interface GetCatalogEntityArgs { catalogId: string; /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; name?: string; } /** * A collection of values returned by getCatalogEntity. */ export interface GetCatalogEntityResult { readonly catalogId: string; /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly name: string; } export declare function getCatalogEntityOutput(args: GetCatalogEntityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCatalogEntity. */ export interface GetCatalogEntityOutputArgs { catalogId: pulumi.Input; /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; name?: pulumi.Input; } //# sourceMappingURL=getCatalogEntity.d.ts.map