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