import { MiniviewComponentProps } from "./definitions"; /** * This component provides a miniview widget. See {@link MiniviewComponentProps} for a definition of supported props. */ export declare const MiniviewComponent: { setup(props: MiniviewComponentProps): { service: unknown; }; name: string; props: { surfaceId: { type: StringConstructor; }; className: { type: StringConstructor; default: string; }; activeTracking: { type: BooleanConstructor; default: boolean; }; clickToCenter: { type: BooleanConstructor; default: boolean; }; showLasso: { type: BooleanConstructor; default: boolean; }; trackSelection: { type: BooleanConstructor; default: boolean; }; typeFunction: { type: FunctionConstructor; }; }; mounted: () => void; render: (_ctx: any) => import("vue").VNode; };