import { DecodeMethodEnum } from '../../../../types/serverTransactions.types'; interface IGetDecodedParts { parts: string[]; decodeMethod: DecodeMethodEnum; initialDecodedParts: string[]; identifier?: string; } export declare const getDecodedParts: ({ parts, decodeMethod, identifier, initialDecodedParts }: IGetDecodedParts) => string[]; export {};