import React from 'react'; import type { PlotUtilities } from './renderers/types'; import type { MarkAnnotation } from './types'; type MarksContainerProps = { plotUtilities?: PlotUtilities; marks?: MarkAnnotation[]; selectedMark?: MarkAnnotation['legendLabel']; }; export declare const MarksContainer: React.FC; export {};