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<EsvCountResponse>} a promise that resolves to an object with counts of secrets and variables
     */
    getEsvCount(): Promise<EsvCountResponse>;
};
declare const _default: (state: State) => EsvCount;
export default _default;
export declare function getEsvCount({ state, }: {
    state: State;
}): Promise<EsvCountResponse>;
//# sourceMappingURL=EsvCountOps.d.ts.map