import type { LTStartConfig } from '../types/startup'; /** * Apply database connection settings from the startup config * to the shared postgres_options object. */ export declare function applyDatabaseConfig(db: LTStartConfig['database']): void; /** * Apply server port and auth settings from the startup config. */ export declare function applyServerAuthConfig(startConfig: LTStartConfig): Promise;