/**
 * Revolugo Booking API Reference
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.5.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Status of the response data.
 * @export
 */
export declare const PollerStatus: {
    readonly Complete: "COMPLETE";
    readonly InProgress: "IN_PROGRESS";
};
export type PollerStatus = typeof PollerStatus[keyof typeof PollerStatus];
export declare function PollerStatusFromJSON(json: any): PollerStatus;
export declare function PollerStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): PollerStatus;
export declare function PollerStatusToJSON(value?: PollerStatus | null): any;
