import { GraphQLSchema } from 'graphql'; import { IResolvers } from '@graphql-tools/utils'; export declare const movieTypes = "\n\n type Book {\n id: Int\n title: String\n author: Int\n cover: String\n }\n\n type Books {\n books: [Book]\n count: Int\n }\n\n type Query {\n getBook(id: Int): Book\n getBooks: Books\n }\n\n type Mutation {\n uploadCover(id: Int!, file: Upload! ): Book\n }\n\n scalar Upload\n\n"; export declare function getMovieResolvers(): IResolvers; export declare function getSchema(): GraphQLSchema; export declare const remoteApplication2: () => Promise<{ server: import("http").Server; }>;