export interface Option {
    algorithm?: string;
    saltLength?: number;
    iterations?: number;
}
export declare const generate: (password: string, options?: Option | undefined) => string;
export declare const verify: (password: string, hashedPassword: string) => boolean;
export declare const isHashed: (password: string) => boolean;
