interface HashType {
    passwordHash?: string;
    salt?: string;
}
export declare function saltHashPassword(userpassword: string, saltIncluded?: string): Promise<HashType>;
export {};
