/** * Returns information about the availability of a temporary password, which can be * used for payments */ export declare class TemporaryPasswordStateBaseModel { _: 'temporaryPasswordState'; /** True, if a temporary password is available */ hasPassword: boolean; /** Time left before the temporary password expires, in seconds */ validFor: number; }