import { SupportedDex, SupportedChainId } from '../types';
export type AddressConfig = {
    [key in SupportedDex]?: string;
};
export type SupportedDexConfig = {
    depositGuardAddress: string;
    vaultDeployerAddress: string;
};
export type Config = {
    [key in SupportedDex]?: SupportedDexConfig;
};
export declare const VAULT_DEPOSIT_GUARD: Record<SupportedChainId, {
    [key in SupportedDex]: string;
}>;
export declare const addressConfig: Record<SupportedChainId, Config>;
export declare const MULTICALL_ADDRESSES: Partial<Record<SupportedChainId, string>>;
