import { Point } from './features/Point'; import { Hemisphere } from './Hemisphere'; /** * Helper functions for Hemisphere * * @since 1.0.0 */ export declare class HemisphereUtils { /** * Get the hemisphere for the latitude * * @param latitude * latitude * @return hemisphere */ static fromLatitude(latitude: number): Hemisphere; /** * Get the hemisphere for the point * * @param point * point * @return hemisphere */ static from(point: Point): Hemisphere; } //# sourceMappingURL=HemisphereUtils.d.ts.map