type NativeHashMethod = "SHA-256" | "SHA-384" | "SHA-512";
export default function (input: string, method?: NativeHashMethod): Promise<string>;
export {};
