import { HashType } from "../types";
export default function hash({ data, hashType }: {
    data: string;
    hashType: HashType;
}): string;
