import React from 'react'; import './legend-style.css'; export interface LegendProps { legendType: string; data: { label: string; value: number; color: string; }[]; variableLabel?: string; quantityLabel?: string; tickLabelsVisible?: boolean; onShowFilter?: () => {}; onShowVariableChooser?: () => {}; onChange?: (event: React.ChangeEvent) => void; selectedOption?: string; dropdownTitle: string; dropdownHref: string[]; dropdownItemText: string[]; dependentAxisRange?: number[]; legendInfoNumberText?: string; } declare const MapVEuLegendSampleListHide: (props: LegendProps) => JSX.Element; export default MapVEuLegendSampleListHide; //# sourceMappingURL=MapVEuLegendSampleList.d.ts.map