import { HookContext } from '@feathersjs/feathers';
export interface HashPasswordOptions {
    authentication?: string;
    strategy?: string;
}
export default function hashPassword(field: string, options?: HashPasswordOptions): (context: HookContext) => Promise<HookContext<any, import("@feathersjs/feathers").Service<any>>>;
