import type { HardhatNetworkAccountUserConfig } from 'hardhat/types'; export type NamedAccountIndices = typeof namedAccountIndices; export type NamedAccounts = { [Property in keyof NamedAccountIndices]: string; }; export declare const namedAccountIndices: { readonly admin: 0; readonly unassigned0: 1; /** 0x6b9d03759E9F14a641f0703fBD84F1F726159B6B */ readonly supplier: 2; readonly unassigned2: 3; readonly investor1: 4; readonly investor2: 5; readonly buyer: 6; readonly employee: 7; readonly mockPolygonBridge: 8; readonly noriWallet: 9; }; export declare const namedAccounts: NamedAccounts; export declare const accounts: HardhatNetworkAccountUserConfig[] | undefined;