import { RemoveDeviceResponseDTO } from './remove-device.dto'; /** * Admin DTO for removing a single MFA device by device ID. * * Admin APIs are allowed to target any user's device. * This DTO is intentionally minimal: it only requires the `deviceId`. * * @example * ```typescript * const result = await mfaService.adminRemoveDevice({ deviceId: 123 }); * ``` */ export declare class AdminRemoveDeviceDTO { /** * MFA device numeric ID. * * @example 123 */ deviceId: number; } export { RemoveDeviceResponseDTO }; //# sourceMappingURL=admin-remove-device.dto.d.ts.map