export interface Area { x: number; y: number; width: number; height: number; } export type AreaSelectionCallback = (area: Area) => void;