type Param = { encryptedString: string; encryptionKey?: string; encryptionSalt?: string; debug?: boolean; }; /** * # Decrypt Function */ export default function decrypt({ encryptedString, encryptionKey, encryptionSalt, debug, }: Param): string; export {};