/**
 * PreloadSound 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 { UUID } from "../types";
import { type PacketMetadata } from "./packet";
export interface PreloadSoundData {
    dataBlock?: {
        objectId: string;
        ownerId: string;
        soundId: string;
    }[];
}
export declare const preloadSoundMetadata: {
    id: number;
    name: string;
    frequency: 1;
    trusted: true;
    blocks: {
        name: string;
        parameters: [string, typeof UUID][];
        multiple: true;
    }[];
};
export declare const preloadSound: (data: PreloadSoundData, reliable?: boolean) => {
    data: PreloadSoundData;
    reliable: boolean | undefined;
    metadata: PacketMetadata;
};
export declare const createPreloadSoundDelegate: (config: Omit<import("..").DelegateConfig<PreloadSoundData>, "metadata">) => void;
