export declare const getUserView: (user: UserInstance) => IUserAttributes; export declare const getUserViews: (users: UserInstance[]) => IUserAttributes[]; export declare const findUserByPayload: (payload: IJwtPayload) => Promise; export declare const generateAuthToken: (user: UserInstance, refreshExpiresIn?: number) => any; export declare const hashPassword: (password: string) => Promise; export declare const comparePassword: (user: UserInstance, password: string) => Promise;