import { Command, CommandFlags } from '../../command.js'; type GraphQLServerFlags = CommandFlags & { readonly?: boolean; port?: number; graphiql?: boolean; }; export default class GraphQLServer extends Command { static description: string; static args: { runtimeDefinitionPath: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static flags: { readonly: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; port: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; graphiql: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; 'ceramic-url': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'did-private-key': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; }; run(): Promise; } export {};