import { Expand } from 'arx-convert/utils';
import { Vector3 } from '../Vector3.js';
import { Zone, ZoneConstructorProps } from '../Zone.js';
export declare const createZone: (props: Expand<Omit<ZoneConstructorProps, 'points' | 'height'> & {
position?: Vector3;
size?: Vector3;
}>) => Zone;