/// import type { IAuthentication } from '../types/Authentication'; export declare class RadiusService { private secret; private packetHandler; constructor(secret: string, authentication: IAuthentication); handleMessage(msg: Buffer): Promise<{ data: Buffer; expectAcknowledgment?: boolean; } | undefined>; }