/// /// import { Server } from 'http'; import { Writable } from 'stream'; interface SetupGraphiQLServerOptions { stdout: Writable; port: number; appName: string; appUrl: string; apiKey: string; apiSecret: string; key?: string; storeFqdn: string; } export declare function setupGraphiQLServer({ stdout, port, appName, appUrl, apiKey, apiSecret, key, storeFqdn, }: SetupGraphiQLServerOptions): Server; export {};