/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const SearchIndexState: { readonly CREATING: "CREATING"; readonly ACTIVE: "ACTIVE"; readonly FAILED: "FAILED"; }; export type SearchIndexState = typeof SearchIndexState[keyof typeof SearchIndexState]; export declare function instanceOfSearchIndexState(value: any): boolean; export declare function SearchIndexStateFromJSON(json: any): SearchIndexState; export declare function SearchIndexStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchIndexState; export declare function SearchIndexStateToJSON(value?: SearchIndexState | null): any; export declare function SearchIndexStateToJSONTyped(value: any, ignoreDiscriminator: boolean): SearchIndexState;