/**
 *
 * @param x X coordinate (up to 15 bits: 0-32,767)
 * @param y Y coordinate (up to 15 bits: 0-32,767)
 * @returns 32-bit Morton code
 */
export declare function morton2DEncode(x: number, y: number): number;
