import { BaseProcess, DevProcessFunction } from './types.js'; interface GraphiQLServerProcessOptions { appName: string; appUrl: string; apiKey: string; apiSecret: string; storeFqdn: string; key?: string; port: number; } export interface GraphiQLServerProcess extends BaseProcess { type: 'graphiql'; } export declare function setupGraphiQLServerProcess(options: GraphiQLServerProcessOptions): Promise; export declare const launchGraphiQLServer: DevProcessFunction; export {};