import { HintOption } from '.'; export interface Hint { field: string; showOnlyWhenSelected?: boolean; width?: number; options?: (HintOption | string)[] | (() => string[]); } export interface AgHint { column: string; showOnlyWhenSelected?: boolean; width?: number; options?: (HintOption | string)[]; }