/** * Convert a SHC raw string to a standard JWT * @param rawSHC The raw 'shc://' string (from a QR code) */ export declare function numericShcToJwt(rawData: string): string; export default function decode(rawText: string): Promise<{ header: any; payload: any; verifications: { trustable: boolean; verifiedBy: string; origin: string; verificationError?: undefined; } | { verificationError: unknown; trustable: boolean; verifiedBy?: undefined; origin?: undefined; }; }>;