interface ISmartDecodedParts { parts: string[]; decodedParts: string[]; identifier?: string; } export declare const getSmartDecodedParts: ({ parts, decodedParts, identifier }: ISmartDecodedParts) => string[]; export {};