import React from 'react';
import { StandardProps } from '../../util/component-types';
export interface IBarProps extends StandardProps, React.SVGProps<SVGRectElement> {
    /** x coordinate. */
    x: number;
    /** y coordinate. */
    y: number;
    /** Height of the bar. */
    height: number | string;
    /** Width of the bar. */
    width: number | string;
    /** Determines if the bar has a white stroke around it. */
    hasStroke: boolean;
    /** Strings should match an existing color class unless they start with a '#'
        for specific colors. E.g.:

        - \`COLOR_0\`
        - \`COLOR_GOOD\`
        - \`'#123abc'\`
     */
    color: string;
}
export declare const Bar: {
    (props: IBarProps): React.ReactElement;
    defaultProps: {
        x: number;
        y: number;
        height: number;
        width: number;
        color: string;
        hasStroke: boolean;
    };
    displayName: string;
    peek: {
        description: string;
        categories: string[];
    };
    propTypes: {
        style: any;
        className: any;
        x: any;
        y: any;
        height: any;
        width: any;
        hasStroke: any;
        color: any;
    };
};
export default Bar;
