import { type ChartFillType } from "../coloring/types.js"; import { type IPushpinCategoryLegendItem, type ItemBorderRadiusPredicate } from "./types.js"; /** * @internal */ export interface IFluidLegendProps { containerWidth: number; series: IPushpinCategoryLegendItem[]; enableBorderRadius?: boolean | ItemBorderRadiusPredicate; onItemClick?(item: IPushpinCategoryLegendItem): void; chartFill?: ChartFillType; } /** * @internal */ export declare const FluidLegend: import("react").NamedExoticComponent; //# sourceMappingURL=FluidLegend.d.ts.map