export declare const PasswordEncoder: unique symbol; export interface PasswordEncoder { encode(rawPassword: string): Promise; matches(rawPassword: string, encodedPassword: string): Promise; } //# sourceMappingURL=password-protocol.d.ts.map