export declare enum SearchIntentsTypeRequest { Listing = 0, Product = 1, Redirect = 2 } export declare enum SearchIntentsTypeFilter { ProductId = 0, Brands = 1, Categories = 2, Gender = 3, Materials = 4, Attributes = 5, Sizes = 6, Price = 7, Colors = 8, PriceType = 9, Text = 10 } export type SearchIntentsValue = { value: string; slug: string; }; export type SearchIntentsResource = { typeFilter: SearchIntentsTypeFilter; values: SearchIntentsValue[]; }; export type SearchIntents = { typeRequest: SearchIntentsTypeRequest; redirectUrl: string; resources: SearchIntentsResource[]; };