import { ComponentResource, type ComponentResourceOptions, type Input } from '@pulumi/pulumi'; export type PostgresOptions = { apiKey?: string; neonProjectId: string; projectId: string; environmentName: string; }; export declare class Postgres extends ComponentResource { readonly connectionUrl: Input; readonly host: Input; readonly databaseName: Input; readonly username: Input; readonly password: Input; constructor(name: string, options: PostgresOptions, opts?: ComponentResourceOptions); }