import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Indexes data source */ export declare function getEs(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getEs. */ export interface GetEsResult { /** * Indexes identifier */ readonly id: string; /** * List of the indexes in your project */ readonly indexes: outputs.GetEsIndex[]; } /** * Indexes data source */ export declare function getEsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;