/** * 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 TableState: { readonly AVAILABLE: "AVAILABLE"; readonly PROCESSING: "PROCESSING"; readonly PROCESSING_FAILED: "PROCESSING_FAILED"; }; export type TableState = typeof TableState[keyof typeof TableState]; export declare function instanceOfTableState(value: any): boolean; export declare function TableStateFromJSON(json: any): TableState; export declare function TableStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableState; export declare function TableStateToJSON(value?: TableState | null): any; export declare function TableStateToJSONTyped(value: any, ignoreDiscriminator: boolean): TableState;