Server: {
    createServer(serverData: ServerSkeleton): Promise<ServerSkeleton>;
    createServerExportTemplate(): ServerExportInterface;
    exportServer(
        serverId: string,
        options: ServerExportOptions,
    ): Promise<ServerExportInterface>;
    exportServerByUrl(
        serverUrl: string,
        options: ServerExportOptions,
    ): Promise<ServerExportInterface>;
    exportServers(options: ServerExportOptions): Promise<ServerExportInterface>;
    importFirstServer(
        importData: ServerExportInterface,
        options: ServerImportOptions,
    ): Promise<ServerExportInterface>;
    importServers(
        importData: ServerExportInterface,
        options: ServerImportOptions,
        serverId?: string,
        serverUrl?: string,
    ): Promise<ServerExportInterface>;
    readServer(serverId: string): Promise<ServerSkeleton>;
    readServerByUrl(serverUrl: string): Promise<ServerSkeleton>;
    readServers(): Promise<ServerSkeleton[]>;
}

Type declaration