import FacetValue from "./FacetValue";
import * as FacetCategories from "./FacetCategories";
export type FacetCategory = {
    [key in keyof typeof FacetCategories]: FacetValue;
};
export declare const FacetCategoryMapping: () => FacetCategory;
declare class Facet {
    title: string;
    name: string;
    displayName: string;
    category: boolean;
    multiSelect: boolean;
    values: FacetValue[];
    constructor(facet: any);
    static Category: FacetCategory;
    static UpcomingProduct: FacetValue;
}
export default Facet;
