/** Flat bounds `[minLng, minLat, maxLng, maxLat]` — the only shape `` accepts. */ export type FlatBounds = [number, number, number, number]; /** * Validates flat or nested bounds, given as an array or a JSON string, and normalises to flat. * Invalid input resolves to `fallbackBounds`, which may be `undefined` — no panning restriction. */ export declare const resolveBounds: (bounds: unknown, fallbackBounds?: FlatBounds) => FlatBounds | undefined; //# sourceMappingURL=validateBounds.d.ts.map