export type Interaction = 'drag' | 'zoom';
export type Point = {
    x: number;
    y: number;
};
