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