import type { CompiledContract } from 'starknet'; import { ContractType } from './types.js'; /** Returns a published contract ABI without loading deployment artifacts. */ export declare function getContractAbi(name: string, contractType?: ContractType): CompiledContract['abi']; /** Returns a precomputed contract class hash without loading deployment artifacts. */ export declare function getContractClassHash(name: string, contractType?: ContractType): string; /** Returns the names of all contracts published in a runtime artifact group. */ export declare function getRuntimeContractNames(contractType?: ContractType): string[]; export { ContractType } from './types.js'; //# sourceMappingURL=runtime.d.ts.map