/** * 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 ProductRangeSortBy: { readonly Relevance: "relevance"; readonly MostPopular: "mostPopular"; readonly AscendingName: "ascendingName"; readonly DescendingName: "descendingName"; }; export type ProductRangeSortBy = typeof ProductRangeSortBy[keyof typeof ProductRangeSortBy]; export declare function instanceOfProductRangeSortBy(value: any): boolean; export declare function ProductRangeSortByFromJSON(json: any): ProductRangeSortBy; export declare function ProductRangeSortByFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeSortBy; export declare function ProductRangeSortByToJSON(value?: ProductRangeSortBy | null): any; export declare function ProductRangeSortByToJSONTyped(value: any, ignoreDiscriminator: boolean): ProductRangeSortBy;