import { HalResource } from '../hal/models/HalResource';
import { EmbeddedCollection } from './EmbeddedCollection';
/**
 * Filter details
 */
export declare class SearchIndexTopFiltersNoResultSearchValue {
    /**
     * The attribute
     */
    attribute: string;
    /**
     * The operator
     */
    operator: string;
    /**
     * The value
     */
    value: string;
}
/**
 * Class representing searches with no results for an Algolia Search Index
 */
export declare class SearchIndexTopFiltersNoResultSearch extends HalResource {
    /**
     * The number of hits
     */
    count: number;
    /**
     * The filter values
     */
    values: SearchIndexTopFiltersNoResultSearchValue[];
}
/**
 * @hidden
 */
export declare class SearchIndexTopFiltersNoResultSearchCollection extends EmbeddedCollection<SearchIndexTopFiltersNoResultSearch> {
    constructor(data?: any);
}
