import YAML from 'yaml'; import { AddressBook } from './address-book'; import type { ContractConfig } from './types/config'; import type { ContractParam } from './types/contract'; export declare function readConfig(path: string, retainMetadata?: boolean): any; export declare function writeConfig(path: string, data: string): void; export declare function loadCallParams(values: Array, addressBook: AddressBook, deployerAddress: string): Array; export declare function getContractConfig(config: Record, addressBook: AddressBook, name: string, deployerAddress: string): ContractConfig; export declare const getItemValue: (doc: YAML.Document.Parsed, path: string) => unknown; export declare const updateItemValue: (doc: YAML.Document.Parsed, path: string, value: unknown) => boolean; //# sourceMappingURL=config.d.ts.map