import { GasInfo, GearApi } from '@gear-js/api'; import { Event } from '@polkadot/types/interfaces'; import { Entries } from '../types'; declare const getAutoGasLimit: ({ waited, min_limit }: GasInfo, _multiplier?: number) => string; declare const withoutCommas: (value: string) => string; declare const getExtrinsicFailedMessage: (api: GearApi, event: Event) => string; declare const getVaraAddress: (address: string) => string; declare const getTypedEntries: (value: T) => Entries; export { getAutoGasLimit, withoutCommas, getExtrinsicFailedMessage, getVaraAddress, getTypedEntries };