import { SuggestionsComponent } from "./hints.component"; export declare class Hint { private parent; data: any; prev: Hint; next: Hint; selected: boolean; constructor(parent: SuggestionsComponent); click(): void; activate(): void; deactivate(): void; }