import type { Address } from "viem";
export type InfraEventsSchema = [
    {
        EventName: "client_send_uo";
        EventData: {
            signerType: string;
            chainId: number;
            entryPoint: Address;
        };
    }
];
export declare const InfraLogger: import("@account-kit/logging").EventLogger<InfraEventsSchema>;
