import { Env } from "../../../../../types/types"; export declare const getProjectMongodbAllPods: (env: Env) => Promise; export declare const getMongodbShell: (namespace: string, podName: string) => Promise; export declare const executeMongodbCommand: (namespace: string, podName: string, mongoCommand: string) => Promise; export declare const podIsMaster: (namespace: string, podName: string) => Promise; export declare const getMongoDbPodsWithReplInfo: (env: Env) => Promise<{ podName: string; componentName: string; isMaster: any; }[]>; export declare const getProjectMongodbAllPodsSortedWithLabel: (env: Env) => Promise<{ value: string; name: string; }[]>;