import { IChallengeSignedSerialized } from "../../challenges/data/ChallengeSigned"; export interface BackbonePostDevicesRequest { devicePassword: string; signedChallenge: IChallengeSignedSerialized; isBackupDevice?: boolean; } export interface BackbonePostDevicesResponse { id: string; username: string; createdAt: string; createdByDevice: string; isBackupDevice: boolean; } //# sourceMappingURL=BackbonePostDevices.d.ts.map