import React from "react";
import { type GpsPosition } from "./types";
interface GpsManagerProps {
    requestCompass: boolean;
    requestCompassAllowed: boolean;
    onPositionUpdate: (pos: GpsPosition) => void;
    onRejectCompass?: () => void;
    onAllowCompass?: () => void;
    orientationStorageKey?: string;
}
export default function GpsManager({ onPositionUpdate, onAllowCompass, onRejectCompass, orientationStorageKey, requestCompass, requestCompassAllowed }: GpsManagerProps): React.JSX.Element;
export {};
//# sourceMappingURL=GpsManager.d.ts.map