import { type LngLatBoundsLike, type PaddingOptions } from 'maplibre-gl'; interface Props { bounds: LngLatBoundsLike | undefined; padding?: number | PaddingOptions; duration?: number; } declare function MapBounds(props: Props): null; export default MapBounds;