import { DecodeMethodEnum, DecodedDisplayType } from '../../../types/serverTransactions.types'; interface IDecodedDataField { data: string; decodeMethod: DecodeMethodEnum; identifier?: string; highlight?: string | null; } export declare const getDecodedDataField: ({ data, decodeMethod, identifier, highlight }: IDecodedDataField) => DecodedDisplayType; export {};