/**
 * ObjectScale 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 { U32, UUID, Vector3 } from "../types";
import { type PacketMetadata } from "./packet";
export interface ObjectScaleData {
    agentData?: {
        agentId?: string;
        sessionId?: string;
    };
    objectData?: {
        objectLocalId: number;
        scale: Vector3;
    }[];
}
export declare const objectScaleMetadata: {
    id: number;
    name: string;
    frequency: 2;
    compression: true;
    blocks: ({
        name: string;
        parameters: [string, typeof UUID][];
        multiple?: undefined;
    } | {
        name: string;
        parameters: ([string, typeof U32] | [string, typeof Vector3])[];
        multiple: true;
    })[];
};
export declare const objectScale: (data: ObjectScaleData, reliable?: boolean) => {
    data: ObjectScaleData;
    reliable: boolean | undefined;
    metadata: PacketMetadata;
};
export declare const createObjectScaleDelegate: (config: Omit<import("..").DelegateConfig<ObjectScaleData>, "metadata">) => void;
