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