export type TextAlign = 'left' | 'right' | 'center' | 'start' | 'end'; export type TextBaseline = 'top' | 'hanging' | 'middle' | 'alphabetic' | 'ideographic' | 'bottom'; export interface BorderDetails { enabled: boolean; color?: string; } export type LabelOptions = 'multi' | 'inline' | 'name' | 'fallback' | 'ellipsis';