import { ILogging } from './ILogging';
export type ModuleAddress = {
    address: string;
    port: number;
};
export declare class UdpService {
    private readonly log;
    private readonly port;
    private readonly timeout;
    constructor(options?: {
        log?: ILogging;
        port?: number;
        timeout?: number;
    });
    getAddress(): Promise<ModuleAddress>;
}
//# sourceMappingURL=UdpService.d.ts.map