import type { AegisAuthConfig } from "../config";
export declare const hashPassword: ({ password, config, }: {
    password: string;
    config: AegisAuthConfig;
}) => Promise<string>;
export declare const verifyPassword: ({ hash, password, config, }: {
    hash: string;
    password: string;
    config: AegisAuthConfig;
}) => Promise<boolean>;
//# sourceMappingURL=password.d.ts.map