import '@oicl/openbridge-webcomponents/dist/ar/poi-controller/poi-controller.js'; import type { PoiFitMode, PoiFrame, PoiDetection, PoiKeyFn } from '@oicl/openbridge-webcomponents/dist/ar/poi-controller/poi-controller.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; fit?: PoiFitMode; frames?: PoiFrame[] | null; detections?: PoiDetection[] | null; frameIndex?: number | null; confidenceMin?: number | null; classFilter?: string[] | null; keyFn?: PoiKeyFn | null; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcPoiController: import("svelte").Component<$$ComponentProps, { PoiFitMode: typeof PoiFitMode; PoiFrame: typeof PoiFrame; PoiDetection: typeof PoiDetection; PoiKeyFn: typeof PoiKeyFn; }, "">; type ObcPoiController = ReturnType; export default ObcPoiController;