import type { CommonOptions } from './common'; export declare function password(opts: PasswordOptions): void; export declare interface PasswordOptions extends CommonOptions { message: string mask?: string validate?: (value: string | undefined) => string | Error | undefined }