export declare const IndexState: { readonly Active: "ACTIVE"; readonly Creating: "CREATING"; readonly Deleting: "DELETING"; readonly Deleted: "DELETED"; readonly Updating: "UPDATING"; }; export type IndexState = (typeof IndexState)[keyof typeof IndexState]; export declare const IndexType: { readonly Local: "LOCAL"; readonly Aggregator: "AGGREGATOR"; }; export type IndexType = (typeof IndexType)[keyof typeof IndexType];