import * as pulumi from "@pulumi/pulumi";
/**
 * Resource schema for AWS::OpenSearchServerless::CollectionIndex
 */
export declare function getCollectionIndex(args: GetCollectionIndexArgs, opts?: pulumi.InvokeOptions): Promise<GetCollectionIndexResult>;
export interface GetCollectionIndexArgs {
    /**
     * The identifier of the collection
     */
    id: string;
    /**
     * The name of the collection index
     */
    indexName: string;
}
export interface GetCollectionIndexResult {
    /**
     * The Mappings for the collection index
     */
    readonly indexSchema?: string;
}
/**
 * Resource schema for AWS::OpenSearchServerless::CollectionIndex
 */
export declare function getCollectionIndexOutput(args: GetCollectionIndexOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCollectionIndexResult>;
export interface GetCollectionIndexOutputArgs {
    /**
     * The identifier of the collection
     */
    id: pulumi.Input<string>;
    /**
     * The name of the collection index
     */
    indexName: pulumi.Input<string>;
}
