import { ListItem } from './data.types'; export type DcuplFacetOptions = { attribute: string; count?: number; excludeZeros?: boolean; excludeUndefineds?: boolean; excludeUnresolved?: boolean; calculateResults?: boolean; }; export type DcuplFacet = { key: string; enabled: boolean; selected: boolean; size: number; value: boolean | string | null | undefined; entry: ListItem; resultKeys: string[]; children?: Array; };