import { DatetimeString } from '@atproto/lex'; import { com } from '../../lexicons/index.js'; import { AccountDb } from '../db'; export type AppPassDescript = { name: string; privileged: boolean; }; export declare const verifyAccountPassword: (db: AccountDb, did: string, password: string) => Promise; export declare const verifyAppPassword: (db: AccountDb, did: string, password: string) => Promise; export declare const updateUserPassword: (db: AccountDb, opts: { did: string; passwordScrypt: string; }) => Promise; export declare const createAppPassword: (db: AccountDb, did: string, name: string, privileged: boolean) => Promise; export declare const listAppPasswords: (db: AccountDb, did: string) => Promise<{ name: string; createdAt: DatetimeString; privileged: boolean; }[]>; export declare const deleteAppPassword: (db: AccountDb, did: string, name: string) => Promise; //# sourceMappingURL=password.d.ts.map