import type { EncryptedWire } from './EncryptedWire'; import type { RecoverySource } from './RecoverySource'; export type SetupExecuteParams = { guid: string; password: EncryptedWire | null; recoverySource: RecoverySource | null; kiosk: boolean; name: string | null; hostname: string | null; };