/** * PisellTimeNavigator 布局与尺寸常量(与 Figma / 交互 spec 对齐) */ /** 横向每格宽度(px),Figma 约 82;axis-moves 固定用此值 */ export declare const CELL_SIZE_H = 82; /** * 横向「此刻」橙区目标宽度(px):按 axis-moves 下一格多的比例换算; * 滚动轴与 cursor-moves 压格时同宽。 */ export declare const CURRENT_TIME_GRADIENT_WIDTH_H_PX: number; /** 竖向每格高度(px) */ export declare const CELL_SIZE_V = 20; /** 横向「Now」按钮占位,避免刻度被挡 */ export declare const CURSOR_MOVES_NOW_RESERVE_PX = 56; /** cursor-moves 横向:轴与视口左右边距 */ export declare const CURSOR_MOVES_H_PADDING_PX = 8; /** cursor-moves 横向:每格最小宽度(再小刻度不可读) */ export declare const CURSOR_MOVES_MIN_CELL_PX = 8; /** 密度层高度:时间轴 48px 内留少量上下边距 */ export declare const DENSITY_LAYER_HEIGHT = 46;