import Lazy from "../Shared/Lazy";
declare namespace ZirconServer {
    /**
     * The server registry for Zircon
     */
    const Registry: Lazy<typeof import("../Services/RegistryService").ZirconRegistryService>;
    /**
     * The server dispatch for Zircon
     */
    const Dispatch: Lazy<typeof import("../Services/DispatchService").ZirconDispatchService>;
    const Log: Lazy<typeof import("../Services/LogService").ZirconLogService>;
}
export default ZirconServer;
