import { FC } from'react';
exportinterfaceDiscreteLegendSymbolProps {
/**
* Color for the symbol set by the `DiscreteLegendEntry`.
*/color: string;
/**
* CSS Class names.
*/className?: string;
}
exportdeclareconstDiscreteLegendSymbol: FC<Partial<DiscreteLegendSymbolProps>>;