type OsoFeatures = "query-max-no-limit" | "local-override-remote-facts"; interface OsoInstanceOptions { policyFiles?: string[]; enabledFeatures?: OsoFeatures[]; port?: number; /** Maximum time in milliseconds to spend trying to initialize the server. Defaults to MAX_TIMEOUT. */ maxInitTimeout?: number; } declare function configureDevServer(options?: OsoInstanceOptions): Promise; declare function getEphemeralOsoKey(): Promise<{ url: string; apiKey: string; }>; declare function stopRunningInstance(): Promise; export { getEphemeralOsoKey, configureDevServer, stopRunningInstance }; //# sourceMappingURL=index.d.ts.map