/// <reference types="node" resolution-mode="require"/>
/// <reference types="node" resolution-mode="require"/>
import { Server } from 'http';
import { Writable } from 'stream';
interface SetupGraphiQLServerOptions {
    stdout: Writable;
    port: number;
    appName: string;
    appUrl: string;
    apiKey: string;
    apiSecret: string;
    randomKey: string;
    url: string;
    storeFqdn: string;
}
export declare function setupGraphiQLServer({ stdout, port, appName, appUrl, apiKey, apiSecret, randomKey, url, storeFqdn, }: SetupGraphiQLServerOptions): Server;
export {};
