import type { TextStyleProps } from "@antv/g"; export type DrillDownOptions = { breadCrumb?: { rootText: string; style: TextStyleProps; active: TextStyleProps; }; isFixedColor?: boolean; }; /** * @todo DrillDown interaction */ export declare function DrillDown(drillDownOptions?: DrillDownOptions): (context: any) => () => void;