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