/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * 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 payment
 * @export
 * @enum {string}
 */
export declare enum PaymentStatus {
    draft = "draft",
    authorised = "authorised",
    rejected = "rejected",
    paid = "paid",
    voided = "voided",
    deleted = "deleted"
}
export declare function PaymentStatusFromJSON(json: any): PaymentStatus;
export declare function PaymentStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentStatus;
export declare function PaymentStatusToJSON(value?: PaymentStatus | null): any;
