import type { Address } from 'abitype'; import type { ErrorType } from '../errors/utils.js'; import { LruMap } from '../utils/lru.js'; export declare const isAddressCache: LruMap; export type IsAddressOptions = { strict?: boolean | undefined; }; export type IsAddressErrorType = ErrorType; export declare function isAddress(address: string, options?: IsAddressOptions | undefined): address is Address; //# sourceMappingURL=isAddress.d.ts.map