/**
 * RegionPresenceResponse Packet
 *
 * This file is used to help our packet serialization and deserialization
 * process, and to create new packets on the fly.
 *
 * ⚠️ Do not edit this file manually, it is generated by the `codegen` script!
 *
 * @see {@link http://wiki.secondlife.com/wiki/Message_Layout}
 */
import { F64, IP, Port, U64, Variable1 } from "../types";
import { type PacketMetadata } from "./packet";
export interface RegionPresenceResponseData {
    regionData?: {
        regionId: string;
        regionHandle: number | bigint;
        internalRegionIp: IP;
        externalRegionIp: IP;
        regionPort: Port;
        validUntil: number;
        message: string | Buffer;
    }[];
}
export declare const regionPresenceResponseMetadata: {
    id: number;
    name: string;
    frequency: 2;
    trusted: true;
    compression: true;
    blocks: {
        name: string;
        parameters: ([string, typeof Variable1] | [string, typeof IP] | [string, typeof Port] | [string, typeof U64] | [string, typeof F64])[];
        multiple: true;
    }[];
};
export declare const regionPresenceResponse: (data: RegionPresenceResponseData, reliable?: boolean) => {
    data: RegionPresenceResponseData;
    reliable: boolean | undefined;
    metadata: PacketMetadata;
};
export declare const createRegionPresenceResponseDelegate: (config: Omit<import("..").DelegateConfig<RegionPresenceResponseData>, "metadata">) => void;
