import '@openzeppelin/hardhat-upgrades';
import type { HardhatConfigs } from '@nbouvier/hardhat-configs';
import type { DeployProxyFunction } from './environment/deploy-proxy';
import type { UpgradeProxyFunction } from './environment/upgrade-proxy';
import './environment/type-extensions';
export { ProxyDeploymentException } from './environment/deploy-proxy';
export { ProxyUpgradeException } from './environment/upgrade-proxy';
export interface HardhatConfigsProxy extends HardhatConfigs {
    deployProxy: DeployProxyFunction;
    upgradeProxy: UpgradeProxyFunction;
}
//# sourceMappingURL=index.d.ts.map