import type { AddressInfo } from "node:net"; export interface StartServeOptions { dir: string; port: number; } export declare const startServe: ({ dir, port }: StartServeOptions) => Promise<{ promise: Promise; resolve: (value: AddressInfo | PromiseLike) => void; reject: (reason?: any) => void; }>; //# sourceMappingURL=openai-api.d.ts.map