import React from 'react'; export declare const labelTypes: readonly ["dot", "line", "warning"]; export declare type LabelType = typeof labelTypes[number]; export declare const sizes: readonly ["xs", "s", "m"]; export declare type Size = typeof sizes[number]; export declare const labelPositions: readonly ["top", "left"]; export declare type LabelPosition = typeof labelPositions[number]; declare type Props = { children: React.ReactNode; color?: string; type?: LabelType; fontSize?: Size; position?: LabelPosition; lineBold?: boolean; className?: string; shouldCropText?: boolean; onMouseEnter?: () => void; onMouseLeave?: () => void; }; export declare const LegendItem: React.FC; export {};