export type BalloonPoints = { type?: string; coords: number[]; content?: BalloonContent; }; export type BalloonContent = { header?: string; body?: string; footer?: string; hint?: string; };