/** * 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 CustomerOrderTab: { readonly All: "all"; readonly Processing: "processing"; readonly Shipped: "shipped"; }; export type CustomerOrderTab = typeof CustomerOrderTab[keyof typeof CustomerOrderTab]; export declare function instanceOfCustomerOrderTab(value: any): boolean; export declare function CustomerOrderTabFromJSON(json: any): CustomerOrderTab; export declare function CustomerOrderTabFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerOrderTab; export declare function CustomerOrderTabToJSON(value?: CustomerOrderTab | null): any; export declare function CustomerOrderTabToJSONTyped(value: any, ignoreDiscriminator: boolean): CustomerOrderTab;