export declare const VAULT_DIR: string; export interface VaultProfile { name: string; url?: string; username: string; password: string; notes?: string; createdAt: string; updatedAt: string; } export declare function validateProfileName(name: string): boolean; export declare function saveProfile(name: string, profile: VaultProfile, masterPassword: string): Promise; export declare function loadProfile(name: string, masterPassword: string): Promise; export declare function listProfiles(): string[]; export declare function deleteProfile(name: string): void; //# sourceMappingURL=store.d.ts.map