import { ISodiumConfig, ISodiumConfigOptional, IPasswordData } from "./interfaces"; export declare function sha256(input: any): any; export declare function sha512(input: any): any; export declare function createConfig(config: ISodiumConfigOptional): ISodiumConfig; export declare function newHash(password: string, sodiumConfig: ISodiumConfig): Promise; export declare function hashByMeta(password: any, meta: any): Promise; export declare function generateRandomPassword(bytes?: number): string;