import { DomainXValue, DomainYValue } from "../common/Types.js";
import { XYZDatumEx } from "./commonXYZ.js";
export declare type XYBubbleLayerProps<X extends DomainXValue, Y extends DomainYValue, Data = void> = {
    componentId: string;
    data: XYZDatumEx<X, Y, Data>[];
    offset: number;
};
export declare function XYBubbleLayer<X extends DomainXValue, Y extends DomainYValue, Data = void>({ componentId, data, offset, }: XYBubbleLayerProps<X, Y, Data>): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
