export declare type PointerContextType = {
    x: number;
    y: number;
    over: boolean;
    selected: boolean;
};
export declare enum PointerContextActionType {
    UpdatePosition = 0,
    StartOver = 1,
    EndOver = 2,
    StartInteraction = 3,
    EndInteraction = 4
}
export declare type PointerContextAction = {
    type: PointerContextActionType;
    x?: number;
    y?: number;
};
