/**
 * ConfirmXferPacket 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, U64 } from "../types";
import { type PacketMetadata } from "./packet";
export interface ConfirmXferPacketData {
    xferId?: {
        id: number | bigint;
        packet: number;
    };
}
export declare const confirmXferPacketMetadata: {
    id: number;
    name: string;
    blocks: {
        name: string;
        parameters: ([string, typeof U32] | [string, typeof U64])[];
    }[];
};
export declare const confirmXferPacket: (data: ConfirmXferPacketData, reliable?: boolean) => {
    data: ConfirmXferPacketData;
    reliable: boolean | undefined;
    metadata: PacketMetadata;
};
export declare const createConfirmXferPacketDelegate: (config: Omit<import("..").DelegateConfig<ConfirmXferPacketData>, "metadata">) => void;
