type RegisterOptions = {
    name: string;
    port: number;
    address?: string;
    tags?: string[];
    meta?: Record<string, string>;
};
export declare function registerService(options: RegisterOptions): Promise<void>;
export {};
