/**
 * StartPingCheck 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 { U8, U32 } from "../types";
import { type PacketMetadata } from "./packet";
export interface StartPingCheckData {
    pingId?: {
        pingId: number;
        oldestUnacked: number;
    };
}
export declare const startPingCheckMetadata: {
    id: number;
    name: string;
    blocks: {
        name: string;
        parameters: ([string, typeof U32] | [string, typeof U8])[];
    }[];
};
export declare const startPingCheck: (data: StartPingCheckData, reliable?: boolean) => {
    data: StartPingCheckData;
    reliable: boolean | undefined;
    metadata: PacketMetadata;
};
export declare const createStartPingCheckDelegate: (config: Omit<import("..").DelegateConfig<StartPingCheckData>, "metadata">) => void;
