import { PropsWithChildren } from 'react';
/**
 * UtmPosition props
 * @expand
 */
export type UtmPositionProps = {
    easting: number;
    northing: number;
    altitude?: number;
};
/**
 * Container component which allows sub components positioned relative to a UTM coordinate. Used with the `UtmArea`
 * component.
 *
 * @example
 * <UtmArea utmZone="31N" origin={[474000, 6522000]}>
 *  <UtmPosition easing={easting} northing={northing}>
 *    { children }
 *  </UtmPosition>
 * </UtmArea>
 *
 * @see {@link UtmArea}
 *
 * @group Components
 */
export declare const UtmPosition: ({ easting, northing, altitude, children }: PropsWithChildren<UtmPositionProps>) => import("react/jsx-runtime").JSX.Element;
