import { EsvCountResponse } from '../../api/cloud/EsvCountApi'; import { State } from '../../shared/State'; export type EsvCount = { /** * Get count of ESV secrets and variables in the environment. * @returns {Promise} a promise that resolves to an object with counts of secrets and variables */ getEsvCount(): Promise; }; declare const _default: (state: State) => EsvCount; export default _default; export declare function getEsvCount({ state, }: { state: State; }): Promise; //# sourceMappingURL=EsvCountOps.d.ts.map