import { State } from '../../shared/State'; export type EsvCountResponse = { secrets: number; variables: number; }; /** * 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 */ export declare function getEsvCount({ state, }: { state: State; }): Promise; //# sourceMappingURL=EsvCountApi.d.ts.map