/**
 * Computes the conjugate of a complex number
 * @param {Symbol} symbol
 * @returns {Symbol}
 */
export function conjugate(symbol: Symbol): Symbol;
import { Symbol } from "../../../Types/Symbol";
