import { PFrameInternal } from "@milaboratories/pl-model-middle-layer"; //#region src/parquet-server.d.ts /** * Serves parquet files from the given root directory. * Manages the server lifecycle with graceful shutdown. */ declare function runParquetServer(): Promise; /** * Reference implementation of a parquet server runner for tests: * - Reads the server configuration from the spawned process stdout * - Forwards the server logs to the console * - Shuts down the server on dispose */ declare class ParquetServer implements Disposable { #private; private constructor(); get info(): PFrameInternal.HttpServerInfo; static serve(rootDir: string, options?: { noHttps?: true; noAuth?: true; port?: number; }): Promise; [Symbol.dispose](): void; } //#endregion export { ParquetServer, runParquetServer }; //# sourceMappingURL=parquet-server.d.ts.map