import type { AbiFunction } from 'abitype'; import type { ErrorType } from '../../errors/utils.js'; import { type FormatAbiItemErrorType } from '../abi/formatAbiItem.js'; import { type ExtractFunctionNameErrorType, type ExtractFunctionParamsErrorType } from '../contract/extractFunctionParts.js'; export type GetFunctionSignatureErrorType = ExtractFunctionNameErrorType | ExtractFunctionParamsErrorType | FormatAbiItemErrorType | ErrorType; export declare const getFunctionSignature: (fn: string | AbiFunction) => string; //# sourceMappingURL=getFunctionSignature.d.ts.map