/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * 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 CartStatus: { readonly Completed: "completed"; readonly Active: "active"; readonly Expired: "expired"; }; export type CartStatus = typeof CartStatus[keyof typeof CartStatus]; export declare function instanceOfCartStatus(value: any): boolean; export declare function CartStatusFromJSON(json: any): CartStatus; export declare function CartStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartStatus; export declare function CartStatusToJSON(value?: CartStatus | null): any; export declare function CartStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): CartStatus;