import type { AbiManifest, TypeRef, TypeDef, Method, Event } from './types.js'; export declare function getAbiManifest(): AbiManifest | null; export declare function resolveTypeRef(abi: AbiManifest, typeRef: TypeRef): TypeDef | null; export declare function getMethod(abi: AbiManifest, methodName: string): Method | null; export declare function getEvent(abi: AbiManifest, eventName: string): Event | null; export declare function getEventPayloadType(abi: AbiManifest, eventName: string): TypeRef | null; export declare function getStateRootType(abi: AbiManifest): TypeDef | null; export declare function isNullable(typeRef: TypeRef): boolean; export declare function getInnerType(typeRef: TypeRef): TypeRef | null; //# sourceMappingURL=helpers.d.ts.map