```ts export namespace authentication { export function getPassword(key: string): Thenable<string | null>; export function setPassword(key: string, value: string | null): Thenable<void>; } ```