import type { LineChartInteractionBounds } from "./interaction";
export type LineChartOutsidePressSurface = {
    height: number;
    key: "top" | "left" | "right" | "bottom";
    left: number;
    top: number;
    width: number;
};
export declare const getLineChartOutsidePressSurfaces: ({ enabled, mainHeight, visibleInteractionBounds, width }: {
    enabled: boolean;
    mainHeight: number;
    visibleInteractionBounds: LineChartInteractionBounds;
    width: number;
}) => LineChartOutsidePressSurface[];
//# sourceMappingURL=outsidePressSurfaces.d.ts.map