import React from "react";
import { VictoryCommonPrimitiveProps } from "../victory-util/common-props";
export type WhiskerAxes = {
    x1?: number;
    x2?: number;
    y1?: number;
    y2?: number;
};
export interface WhiskerProps extends VictoryCommonPrimitiveProps {
    groupComponent?: React.ReactElement;
    lineComponent?: React.ReactElement;
    majorWhisker?: WhiskerAxes;
    minorWhisker?: WhiskerAxes;
}
export declare const Whisker: (initialProps: WhiskerProps) => React.DetailedReactHTMLElement<{}, HTMLElement>;
//# sourceMappingURL=whisker.d.ts.map