import { type TAbiInput } from '../types/TAbi'; export declare namespace $abiType { function getTsTypeFromDefinition(type: string): any; function getTsType($abiType: TAbiInput['type'], $abi?: Partial): any; namespace array { function getBaseType(arrayType: string): string; function getLength(arrayType: string): number; function serializeLength(arrayType: string): string; } namespace mapping { function getKeyType(mappingType: string): string; function getValueType(mappingType: string): string; } }