import React from "react";
import { VictoryCommonPrimitiveProps } from "../victory-util/common-props";
export interface BackgroundProps extends VictoryCommonPrimitiveProps {
    circleComponent?: React.ReactElement;
    height?: number;
    rectComponent?: React.ReactElement;
    rx?: number;
    ry?: number;
    width?: number;
    x?: number;
    y?: number;
}
export declare const Background: (initialProps: BackgroundProps) => React.DetailedReactHTMLElement<any, HTMLElement>;
//# sourceMappingURL=background.d.ts.map