import type { PostgresBackendOptions, PostgresConfig } from "./types.js"; /** * Creates and validates PostgreSQL backend configuration. * * @param options - User-provided configuration options * @returns Validated configuration with defaults applied * @throws {LockError} If configuration is invalid */ export declare function createPostgresConfig(options?: PostgresBackendOptions): PostgresConfig;