export declare enum FOCUS_TYPE { OBJECT = "OBJECT", OBJECT_ALL = "OBJECT_ALL", NAVIGATION = "NAVIGATION", POI = "POI", POI_ALL = "POI_ALL" } export interface IFocusTo { focus: { type: FOCUS_TYPE; ids?: string[]; }; transition: boolean; padding?: { top: number; left: number; bottom: number; right: number; }; }