interface LogParam {
    eventId: string;
}
export default function serverLog<T extends LogParam>(logstore: string, param: T): void;
export {};
