import { ServiceDefinition } from '@grpc/grpc-js/build/src/make-client';
import { Server, UntypedServiceImplementation } from '@grpc/grpc-js/build/src/server';
interface GetServiceDefinition {
    (): ServiceDefinition;
}
interface GetHandlers {
    (): UntypedServiceImplementation;
}
export declare function registerAdminService(getServiceDefinition: GetServiceDefinition, getHandlers: GetHandlers): void;
export declare function addAdminServicesToServer(server: Server): void;
export { };
