import React from "react"; import { type PropsForScalebar } from "../types"; import type { TgdEvent } from "@tolokoban/tgd"; export interface MorphoViewerScalebarProps { className?: PropsForScalebar["scalebar"]; spacePerPixelEvent: TgdEvent; unit?: number | PropsForScalebar["scalebar"]; } export default function MorphoViewerScalebar({ className, spacePerPixelEvent, unit: unitProp, }: MorphoViewerScalebarProps): React.JSX.Element; //# sourceMappingURL=morpho-viewer-scalebar.d.ts.map