import type { ManagedStorageConfig } from "../storage/config-file.js"; import type { RememPaths } from "../storage/paths.js"; import type { ProcessRunner } from "./process.js"; export declare const MANAGED_POSTGRES_IMAGE = "pgvector/pgvector:0.8.1-pg16"; export declare function managedCompose(): string; export declare function writeManagedFiles(paths: RememPaths, values: { database: string; user: string; password: string; port: number; }): Promise; export declare function composeArguments(storage: ManagedStorageConfig, command: string[]): string[]; export declare function managedCommand(runner: ProcessRunner, storage: ManagedStorageConfig, command: string[]): Promise;