import { InstantNeonParams } from './types.js';

/**
 * Creates an instant Postgres connection string from Instagres by Neon
 * if not already set in the specified .env file.
 * Prompts the user to optionally generate a connection string,
 * saves it to the .env file, and returns the connection string.
 */
declare const instantNeon: ({ dotEnvFile, dotEnvKey, referrer, seed, }: InstantNeonParams) => Promise<{
    readonly databaseUrl: string;
    readonly poolerUrl: string;
    readonly claimUrl: string;
    readonly claimExpiresAt: Date;
}>;

export { InstantNeonParams, instantNeon };
