interface Props { /** Minimap size in rem. */ size?: number; /** View proprortion under which the view should be displayed. Defaults to 1. */ displayViewThreshold?: number; } declare const Minimap: import("svelte").Component; type Minimap = ReturnType; export default Minimap;