export declare const parsedGanacheYaml: { team: string; project: string; resources: { ganaches: { name: string; folder: string; forkNetwork: string; forkBlockNumber: number; accounts: { address: string; balance: string; }[]; }[]; migrations: { name: string; network: string; source: string; constructorParams: { name: string; value: string; }[]; }[]; tests: { source: string; network: string; }[]; transactions: ({ type: string; from: string; to: string; value: string; data: string; gasPrice: string; gasLimit: number; nonce: number; contract?: undefined; function?: undefined; parameters?: undefined; transactionOptions?: undefined; } | { type: string; contract: string; function: string; parameters: ({ name: string; value: number; } | { name: string; value: string; })[]; transactionOptions: { from: string; to: string; value: string; data: string; gasPrice: number; gasLimit: number; nonce: number; }; from?: undefined; to?: undefined; value?: undefined; data?: undefined; gasPrice?: undefined; gasLimit?: undefined; nonce?: undefined; } | { type: string; contract: string; function: string; parameters: ({ name: string; value: number; } | { name: string; value: string; })[]; transactionOptions: { from: string; to: string; value: string; data: string; gasPrice: string; gasLimit: number; nonce: number; }; from?: undefined; to?: undefined; value?: undefined; data?: undefined; gasPrice?: undefined; gasLimit?: undefined; nonce?: undefined; })[]; multistep: { step: string; type: string; inputs: string; outputs: string; }[]; }; };