import { type App } from "../App"; import { Mbr, Board } from "microboard-temp"; import { type RefObject } from "react"; import type { SubjectName } from "./getSubscriptions"; type Params = { app: App; board: Board; ref: RefObject; subjects?: SubjectName[]; targetMbr?: Mbr; verticalOffset?: number; horizontalOffset?: number; fit?: "contextPanel" | "linkToBtn" | "comment" | "threadPanel" | "boardMenu" | "hyperLink"; }; export declare function useDomMbr({ app, board, ref, subjects, targetMbr, horizontalOffset, verticalOffset, fit, }: Params): any; export {};