/** *
A container for facet information.
*/ export interface _Bucket { /** *The facet value being counted.
*/ value?: string; /** *The number of hits that contain the facet value in the specified facet field.
*/ count?: number; } export declare type _UnmarshalledBucket = _Bucket;