/**
 * Interface defining the minimal search response parameters.
 * Search response  must implement this interface in order response data to be processed.
 */
export interface SearchFieldModel {
    label: string;
}
