declare const placements: {
    topRight: {
        points: string[];
    };
    topLeft: {
        points: string[];
    };
    bottomRight: {
        points: string[];
    };
    bottomLeft: {
        points: string[];
    };
    top: {
        points: string[];
    };
    bottom: {
        points: string[];
    };
    left: {
        points: string[];
    };
    right: {
        points: string[];
    };
};
export default placements;
export declare const bubblePlacement: {
    points: string[];
    overflow: {
        adjustX: number;
        adjustY: number;
    };
    offset: number[];
};
