/** This schema defines the required passwords for various SAP accounts. */
export interface Passwords {
    /** The password for the SAP master account, which is used for installation tasks related to the SAP system. */
    masterSap: string;
    /** The password for the SAP HANA master account, which is used for installation tasks related to the SAP HANA database. */
    masterSapHana: string;
    /** The password for the sidadm account, which is the system administrator account for the SAP installation. */
    sidadm: string;
    /** The password for the SAP HANA SYSTEM account, which is a privileged user account used for managing the SAP HANA database. */
    system: string;
}
//# sourceMappingURL=Passwords.d.ts.map