import { DecodeMethodEnum } from '../../../../types/serverTransactions.types'; interface IDecodeHighlight { data: string; decodeMethod: DecodeMethodEnum; delimiter: string; identifier?: string; } export declare const decodeHighlight: ({ data, decodeMethod, delimiter, identifier }: IDecodeHighlight) => string; export {};