import type { EdrNetworkAccountsConfig, EdrNetworkForkingConfig } from "../../../../types/config.js";
import type { ChainType } from "../../../../types/network.js";
import { type AccountOverride } from "@nomicfoundation/edr";
export declare function getGenesisStateAndOwnedAccounts(accountsConfig: EdrNetworkAccountsConfig, forkingConfig: EdrNetworkForkingConfig | undefined, chainType: ChainType, specId: string): Promise<{
    genesisState: Map<Uint8Array, AccountOverride>;
    ownedAccounts: Array<{
        secretKey: string;
        balance: bigint;
    }>;
}>;
//# sourceMappingURL=genesis-state.d.ts.map