import type { DockerComposeOutput } from './types.js';
interface PostgresConfig {
    port: string;
    password: string;
    database: string;
    projectName: string;
}
export declare function generatePostgresDockerCompose(config: PostgresConfig): DockerComposeOutput;
export {};
//# sourceMappingURL=postgres.d.ts.map