/**
 * LogFailedMoneyTransaction 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 { IP, S32, U8, U32 } from "../types";
import { type PacketMetadata } from "./packet";
export interface LogFailedMoneyTransactionData {
    transactionData?: {
        transactionId: string;
        transactionTime: number;
        transactionType: number;
        sourceId: string;
        destId: string;
        flags: number;
        amount: number;
        simulatorIp: IP;
        gridX: number;
        gridY: number;
        failureType: number;
    };
}
export declare const logFailedMoneyTransactionMetadata: {
    id: number;
    name: string;
    frequency: 2;
    trusted: true;
    blocks: {
        name: string;
        parameters: ([string, typeof U32] | [string, typeof U8] | [string, typeof IP] | [string, typeof S32])[];
    }[];
};
export declare const logFailedMoneyTransaction: (data: LogFailedMoneyTransactionData, reliable?: boolean) => {
    data: LogFailedMoneyTransactionData;
    reliable: boolean | undefined;
    metadata: PacketMetadata;
};
export declare const createLogFailedMoneyTransactionDelegate: (config: Omit<import("..").DelegateConfig<LogFailedMoneyTransactionData>, "metadata">) => void;
