declare const isArray: (data: any) => boolean; declare const strFormat: (str: string, ...args: any) => string; declare const buildPanorama: (adapter: string, panoData: any) => any; declare const resolvePanorama: (adapter: string, pano: any) => { pid: string; id: string; } | null; declare const findAdapter: (rawdata: any) => any; declare const findNavPanorama: (rawdata: any, id?: number, noMatch?: boolean) => any; declare const parseIds: (ids: string) => { pid: number; id: number; } | null; declare const hasFullscreen: (el?: any) => boolean; export { isArray, strFormat, buildPanorama, resolvePanorama, findAdapter, findNavPanorama, parseIds, hasFullscreen, };