import { MalloyRenderProps } from '../component/render'; import { DataStyles } from './data_styles'; export interface RendererOptions { dataStyles: DataStyles; isDrillingEnabled?: boolean; onDrill?: DrillFunction; titleCase?: boolean; queryTimezone?: string; nextRendererOptions?: Partial; useLegacy?: boolean; } export type DrillFunction = (drillQuery: string, target: HTMLElement, drillFilters: string[]) => void;