import type { Dispatch, SetStateAction } from 'react'; import type { Direction, Dimensions } from '@shopify/polaris-viz-core'; import type { LegendData, LegendPosition, RenderHiddenLegendLabel, RenderLegendContent } from '../../types'; export interface LegendContainerProps { colorVisionType: string; data: LegendData[]; onDimensionChange: Dispatch>; direction?: Direction; fullWidth?: boolean; position?: LegendPosition; maxWidth?: number; renderLegendContent?: RenderLegendContent; enableHideOverflow?: boolean; renderHiddenLegendLabel?: RenderHiddenLegendLabel; } export declare function LegendContainer({ colorVisionType, data: allData, onDimensionChange, direction, fullWidth, position, maxWidth, renderLegendContent, enableHideOverflow, renderHiddenLegendLabel, }: LegendContainerProps): JSX.Element; //# sourceMappingURL=LegendContainer.d.ts.map