import { PureComponent } from 'react';
export interface DiscreteLegendSymbolProps {
    /**
     * Color for the symbol set by the `DiscreteLegendEntry`.
     */
    color: string;
    /**
     * CSS Class names.
     */
    className?: any;
}
export declare class DiscreteLegendSymbol extends PureComponent<DiscreteLegendSymbolProps> {
    static defaultProps: Partial<DiscreteLegendSymbolProps>;
    render(): JSX.Element;
}
