import { EventEmitter } from '../../../stencil-public-runtime';
export declare class LabDsSearchBar {
  value: string;
  hints: Array<{
    name: string;
  }>;
  isHintVisible: boolean;
  valueState: string;
  label: string;
  disabled: boolean;
  changeInput: EventEmitter<string>;
  handleChange(event: any): void;
  el: HTMLElement;
  checkForClickOutside(ev: any): void;
  render(): any;
}
