import { ComponentResource, type ComponentResourceOptions, type Input, type Output } from '@pulumi/pulumi'; export type MongoDBUserArgs = { mongoProjectId: Input; databaseName: string; projectId: string; environmentName: string; }; export declare class MongoDBUser extends ComponentResource { readonly username: string; readonly password: Output; constructor(name: string, args: MongoDBUserArgs, opts?: ComponentResourceOptions); }