export interface Domain { chromosome?: string; start: number; end: number; } export declare type YRange = { min: number; max: number; }; export interface Feature { coordinates: Domain; name: string; color?: string; } export declare type ValuedPoint = { x: number; min: number; max: number; };